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 d204747 commit c763f2cCopy full SHA for c763f2c
.circleci/config.yml
@@ -40,3 +40,6 @@ jobs:
40
key: v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
41
paths:
42
- node_modules
43
+
44
+ - store_artifacts:
45
+ path: $CIRCLE_WORKING_DIRECTORY/build/node_modules.tar.gz
scripts/circleci/test_entry_point.sh
@@ -30,6 +30,7 @@ if [ $((2 % CIRCLE_NODE_TOTAL)) -eq "$CIRCLE_NODE_INDEX" ]; then
30
COMMANDS_TO_RUN+=('yarn test-build-prod --maxWorkers=2')
31
COMMANDS_TO_RUN+=('node ./scripts/tasks/danger')
32
COMMANDS_TO_RUN+=('./scripts/circleci/upload_build.sh')
33
+ COMMANDS_TO_RUN+=('tar -zcvf @build/node_modules.tar.gz @build/node_modules')
34
fi
35
36
if [ $((3 % CIRCLE_NODE_TOTAL)) -eq "$CIRCLE_NODE_INDEX" ]; then
0 commit comments