diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9c8ae1..5a2d131 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,16 +8,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10.x, 12.x, 14.x, 15.x] - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 16.x uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 16.x - run: npm ci - run: npm run build --if-present - run: npm test