Files
openapi-clean-arch-gen/.gitea/workflows/lint.yaml
blas a01b5a2d82
Some checks failed
Lint / lint (pull_request) Failing after 14s
chore: fix bun install
2026-03-25 10:53:45 +01:00

26 lines
454 B
YAML

name: Lint
on:
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
run: |
curl -fsSL https://bun.sh/install | bash -s "bun-v1.3.3"
echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run lint
run: bun run lint