Files
effect-fc/.gitea/workflows/lint.yaml
Renovate Bot b68406dc91
All checks were successful
Test build / test-build (pull_request) Successful in 17s
Lint / lint (push) Successful in 12s
Update oven-sh/setup-bun action to v2
2025-10-03 12:00:51 +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@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome