From a777aa5b9e52a6f8fcde8f0947429cbeb918a56d Mon Sep 17 00:00:00 2001 From: Maxime Labelle Date: Fri, 25 Oct 2024 09:26:54 +0200 Subject: [PATCH] No longer supported node 14.x (#31) --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e6cc43f..92adf5a 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x, 18.x, 20.x, 22.x, 23.x] steps: - name: 📚 checkout @@ -27,7 +27,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: npm install ## ci is not enough on node 14.x + - run: npm install - run: npm run build --if-present - name: ☢ tests run: npm test