Skip to content

Commit a8855a0

Browse files
clydinfilipesilva
authored andcommitted
ci: add a Node.js v16 E2E test job
A full E2E test job is now performed on the main branch using Node.js v16. Node.js v16 is scheduled to become LTS prior to the v13 final release.
1 parent f10a828 commit a8855a0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,10 @@ jobs:
204204
- browser-tools/install-chrome
205205
- run:
206206
name: Initialize Environment
207-
command: ./.circleci/env.sh
207+
# npm 7 currently does not properly publish the packages locally
208+
command: |
209+
./.circleci/env.sh
210+
sudo npm install --global npm@6
208211
- run:
209212
name: Execute CLI E2E Tests
210213
command: |
@@ -357,6 +360,12 @@ workflows:
357360
<<: *only_release_branches
358361
requires:
359362
- build
363+
- e2e-cli:
364+
name: e2e-cli-node-16
365+
nodeversion: '16.10'
366+
<<: *only_release_branches
367+
requires:
368+
- build
360369
- test-browsers:
361370
requires:
362371
- build

0 commit comments

Comments
 (0)