Skip to content

3.2.0

3.2.0 #140

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