Skip to content

Commit

Permalink
ci: 👷 temp: Fix npm version for e2e tests to v8.12
Browse files Browse the repository at this point in the history
npm v8.13 breaks running lifecycle scripts that contain a colon. See npm/cli#5075
  • Loading branch information
peterjuras committed Jun 25, 2022
1 parent f9f2619 commit cbf1ff6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install latest npm version
run: npm install --global npm
# TEMP: Force npm to a version < 8.13, until the following issue is fixed:
# https://github.com/npm/cli/issues/5075
run: npm install --global npm@8.12
- uses: bahmutov/npm-install@v1
- name: Setup git config for e2e tests
run: |
Expand Down

0 comments on commit cbf1ff6

Please sign in to comment.