Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Quick fix for an NPM regression/issue #838

Merged
merged 2 commits into from
Jun 8, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/imperative.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# Temporary workaround for an npm regression
- name: Use npm v8.12.1
run: npm i -g npm@8.12.1
# Temporary workaround for regression in npm@8.11 and newer
- name: Use NPM v8
if: ${{ matrix.node-version != '14.x' }}
run: npm install -g npm@~8.5.5

- name: Install Dependencies
run: npm ci
Expand Down