From d8d6b1bc53a9446af70f710ae61c4a355cb58e53 Mon Sep 17 00:00:00 2001 From: Bart Veneman <1536852+bartveneman@users.noreply.github.com> Date: Fri, 12 Jul 2024 21:07:30 +0200 Subject: [PATCH] ditch the Node matrix in CI (#409) --- .github/workflows/test.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f93a066..f35fad8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,21 +22,11 @@ jobs: test: name: Unit tests runs-on: ubuntu-latest - - strategy: - matrix: - node-version: - - 14.13.0 - - 16 - - 18 - - 20 - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} cache: "npm" - run: npm install --ignore-scripts --no-audit --no-fund - run: npm test @@ -47,10 +37,9 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} cache: "npm" - run: npm install --ignore-scripts --no-audit --no-fund - name: Build package