Files
effect-fc/.gitea/workflows/lint.yaml
Renovate Bot ba7e066961
All checks were successful
Lint / lint (push) Successful in 12s
Test build / test-build (pull_request) Successful in 20s
Update actions/checkout action to v5
2025-10-03 11:44:22 +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@v1
- name: Clone repo
uses: actions/checkout@v5
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome