Skip to content

Lint

Lint #5

Workflow file for this run

name: Lint
on:
workflow_run:
workflows: [Build]
types: [completed]
branches: [main, master]
jobs:
lint:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_sha }}
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint