Files
website/.gitea/workflows/lint.yaml
T
renovate-bot eeecb30731
Build / build (pull_request) Successful in 29s
Lint / lint (push) Failing after 11s
Update actions/checkout action to v7
2026-06-19 12:07:36 +00:00

20 lines
395 B
YAML

name: Lint
run-name: Lint
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Checkout
uses: actions/checkout@v7
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome