From 5014a06b040d21be8b464e85091c23ca0e159d70 Mon Sep 17 00:00:00 2001 From: Raj Kumar Panda Date: Mon, 14 Oct 2024 18:08:12 +0530 Subject: [PATCH] use 20 node --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d9cb0b..c6b05c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,8 +22,11 @@ jobs: node-version: ${{ matrix.node }} # Optionally, use the latest npm version if appropriate - - name: Setup npm@6.12.0 - run: npm i -g npm@6.12.0 # Ensure you need this specific npm version + - name: Setup latest npm version + run: npm install -g npm@latest # Ensure you need this specific npm version + + - name: Install project dependencies + run: npm instal - name: Install deps and build (with cache) uses: bahmutov/npm-install@v1