Skip to content

Commit

Permalink
ci: use npm 6.x on Node.js 10 CI jobs
Browse files Browse the repository at this point in the history
Latest npm is now 7.x and 7.x appears to cause CI failures when setting up the E2E test framework on Node.js 10.
  • Loading branch information
clydin authored and alan-agius4 committed Feb 4, 2021
1 parent 41dc2ec commit dfc6d89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ jobs:
name: Initialize Environment
command: |
./.circleci/env.sh
# Ensure latest npm version to support local package repository
PATH=~/.npm-global/bin:$PATH npm install --global npm
# Ensure latest v6 npm version to support local package repository
PATH=~/.npm-global/bin:$PATH npm install --global npm@6
- run: PATH=~/.npm-global/bin:$PATH node ./tests/legacy-cli/run_e2e --nb-shards=${CIRCLE_NODE_TOTAL} --shard=${CIRCLE_NODE_INDEX}

e2e-cli-node-14:
Expand Down

0 comments on commit dfc6d89

Please sign in to comment.