test: Remove support for Node 18 (#365)

Co-authored-by: Muhammad Anas <muhammad.anas@arbisoft.com>
This commit is contained in:
Arslan Ashraf
2024-11-04 23:46:17 +05:00
committed by GitHub
parent c9d0abe968
commit 7ad1df8bd0

View File

@@ -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