From e32c8cba4fe762dd3d98c516d418728d32bf6885 Mon Sep 17 00:00:00 2001 From: streletss Date: Tue, 24 Oct 2023 22:44:38 +0100 Subject: [PATCH] chore(ci): change node versions matrix --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 3455fa75..c6584409 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x, 18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 @@ -26,7 +26,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - run: npm install -g npm@^7.21.0 + - run: npm install -g npm - run: node -v - run: npm -v - run: npm ci