From 7ad1df8bd037e741af59a5037e1d30d2f8c5366b Mon Sep 17 00:00:00 2001 From: Arslan Ashraf <34372316+arslanashraf7@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:46:17 +0500 Subject: [PATCH] test: Remove support for Node 18 (#365) Co-authored-by: Muhammad Anas --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5c5393..b958d9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,6 @@ on: jobs: tests: runs-on: ubuntu-latest - strategy: - matrix: - node: [18.15, 20] steps: - name: Checkout @@ -24,7 +21,7 @@ jobs: uses: actions/setup-node@v4 # Because of node 18 bug (https://github.com/nodejs/node/issues/47563), Pinning node version 18.15 until the next release of node with: - node-version: ${{ matrix.node }} + node-version-file: '.nvmrc' - name: Install dependencies run: npm ci