Files
effect-view/.gitea/workflows/lint.yaml
T
renovate-bot 805f25dd2e
Lint / lint (push) Successful in 1m53s
Test build / test-build (pull_request) Successful in 2m21s
Update actions/checkout action to v7
2026-07-28 12:06:03 +00:00

21 lines
440 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@v7
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: bun lint:tsc
- name: Lint Biome
run: bun lint:biome
- name: Test
run: bun run test