From bf70fd1450feb9bf650c7db0d4e2427edb52d511 Mon Sep 17 00:00:00 2001 From: Muhammad Abdullah Waheed <42172960+abdullahwaheed@users.noreply.github.com> Date: Thu, 16 Jun 2022 15:06:30 +0500 Subject: [PATCH] fix: added specific npm version to fix peerDependency issue (#247) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bd824b..f6c419b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: strategy: matrix: node: [16] + npm: [8.5.x] steps: - name: Checkout @@ -23,7 +24,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - + - run: npm install -g npm@${{ matrix.npm }} - name: Install dependencies run: npm ci