Files
uptime-monitoring/.github/workflows/lint.yml
T
2026-08-31 21:22:29 +07:00

18 lines
312 B
YAML

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run test
- run: bun run lint
- run: bun run format:check