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 2642eb2 commit f38b119Copy full SHA for f38b119
.circleci/config.yml
@@ -1,9 +1,11 @@
1
version: 2
2
jobs:
3
build:
4
- working_directory: ~/repo
5
docker:
6
- image: cimg/node:lts-browsers
+ resource_class: large
7
+ parallelism: 5
8
+ working_directory: ~/repo
9
steps:
10
- checkout
11
- restore_cache:
@@ -22,10 +24,10 @@ jobs:
22
24
command: npm run release
23
25
- run:
26
name: Run unit tests
- command: npm run test:coverage
27
+ command: npm run test --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL
28
29
name: Run e2e tests
- command: npm run test:e2e
30
+ command: npm run test:e2e --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL
31
32
name: Submit to Codecov
33
command: npm run codecov
0 commit comments