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 1ca357f commit 51337e7Copy full SHA for 51337e7
.circleci/config.yml
@@ -14,16 +14,21 @@ jobs:
14
username: $DOCKERHUB_USERNAME
15
password: $DOCKERHUB_PASSWORD
16
steps:
17
- - browser-tools/install-browser-tools
18
- checkout
19
- run:
20
name: NPM install
21
command: npm ci
22
23
name: Run tests with coverage
24
command: npm run test:ci
25
- - store_artifacts:
26
- path: coverage
+ - when:
+ condition:
+ equal: ["16.15.0", << parameters.node-version >>]
27
+ steps:
28
+ - browser-tools/install-browser-tools
29
+ - run:
30
+ name: Run tests with browser
31
+ command: npm run test:browser
32
publish-npm:
33
docker:
34
- image: cimg/node:16.15.0 # Primary execution image
0 commit comments