Files
effect-fc/.gitea/workflows/lint.yaml
Renovate Bot 6996a14fa4
All checks were successful
Test build / test-build (pull_request) Successful in 18s
Lint / lint (push) Successful in 12s
Update actions/checkout action to v6
2025-11-21 12:01:12 +00:00

19 lines
395 B
YAML

name: Lint
run-name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Clone repo
uses: actions/checkout@v6
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome