Skip to content

Merge pull request #98 from Rate-Limiting-Nullifier/build/update-exam… #142

Merge pull request #98 from Rate-Limiting-Nullifier/build/update-exam…

Merge pull request #98 from Rate-Limiting-Nullifier/build/update-exam… #142

Workflow file for this run

# This workflow run linters to check code is correctly linted.
name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
# Just use the latest to lint
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint