We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10a828 commit a8855a0Copy full SHA for a8855a0
.circleci/config.yml
@@ -204,7 +204,10 @@ jobs:
204
- browser-tools/install-chrome
205
- run:
206
name: Initialize Environment
207
- command: ./.circleci/env.sh
+ # npm 7 currently does not properly publish the packages locally
208
+ command: |
209
+ ./.circleci/env.sh
210
+ sudo npm install --global npm@6
211
212
name: Execute CLI E2E Tests
213
command: |
@@ -357,6 +360,12 @@ workflows:
357
360
<<: *only_release_branches
358
361
requires:
359
362
- build
363
+ - e2e-cli:
364
+ name: e2e-cli-node-16
365
+ nodeversion: '16.10'
366
+ <<: *only_release_branches
367
+ requires:
368
+ - build
369
- test-browsers:
370
371
0 commit comments