Files
openapi-clean-arch-gen/.gitea/workflows/lint.yaml
blas 700597a9e8
All checks were successful
Lint / lint (pull_request) Successful in 10m28s
fix: fix lint in files and add a pipe for checking
2026-03-25 08:33:10 +01:00

26 lines
406 B
YAML

name: Lint
on:
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint