From 62e7e461f5b616a35b13a5065b70bab289d0a60c Mon Sep 17 00:00:00 2001 From: Jawayria Date: Thu, 7 Apr 2022 19:37:19 +0500 Subject: [PATCH] fix: update workflow --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e81963e5..feda25371 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,8 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - node: [16] - npm: [6, 8.5.0] - exclude: - - node: 16 - npm: 6 + node: [12, 14, 16] + steps: - name: Checkout uses: actions/checkout@v2 @@ -28,7 +25,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install NPM - run: npm install -g npm@${{ matrix.npm }} + run: npm install -g npm@8.5.0 - name: Install Dependencies run: |