Files
effect-fc/.gitea/workflows/lint.yaml
Renovate Bot 97ddf8625a
All checks were successful
Lint / lint (push) Successful in 13s
Test build / test-build (pull_request) Successful in 18s
Update actions/checkout action to v5
2025-10-03 18:20:28 +02: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