diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6d38e5d..9a88125 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,10 +3,17 @@ on: [push, pull_request] jobs: deploy: runs-on: ubuntu-latest + strategy: + matrix: + node-version: + - 17 + - lts/* + - latest steps: - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v4 with: - node-version: '16' - - uses: actions/checkout@v2 + node-version: ${{ matrix.node-version }} + - uses: actions/checkout@v4 - run: npm install - - run: npm test \ No newline at end of file + - run: npm run lint + - run: npm test