update github workflow

This commit is contained in:
Kevin Jahns 2023-11-20 12:46:12 +01:00
parent 5861876e6f
commit 9f8c55885f

View File

@ -16,16 +16,16 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [16.x, 18.x] node-version: [16.x, 20.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm ci - run: npm ci
- run: npm run lint - run: npm run lint
- run: npm run test-extensive - run: npm run test
env: env:
CI: true CI: true