Add lint job

This commit is contained in:
Kevin McCormack 2024-04-04 10:49:37 -04:00
parent 2fb3357ed3
commit 790b32e5d0
1 changed files with 12 additions and 0 deletions

View File

@ -4,6 +4,18 @@ on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
# - name: Install npm modules
# run: npm ci
- name: Test
run: npm run lint
test:
runs-on: ubuntu-latest
steps: