From 790b32e5d0b32b0c722ee5031491119296c735b7 Mon Sep 17 00:00:00 2001 From: Kevin McCormack Date: Thu, 4 Apr 2024 10:49:37 -0400 Subject: [PATCH] Add lint job --- .github/workflows/verify.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index d97ed74e..36a6a5f2 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -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: