Skip to content

Merge pull request #103 from Rate-Limiting-Nullifier/feat/expose-more… #151

Merge pull request #103 from Rate-Limiting-Nullifier/feat/expose-more…

Merge pull request #103 from Rate-Limiting-Nullifier/feat/expose-more… #151

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