File tree Expand file tree Collapse file tree 2 files changed +8
-13
lines changed Expand file tree Collapse file tree 2 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 1515 steps :
1616 - checkout
1717 - run :
18- name : set heap option before very first node.js call
19- command : |
20- export NODE_OPTIONS='--max-old-space-size=4096'
21- - run :
22- name : Install dependencies
23- command : |
24- npm ci
25- - run :
26- name : List dependency versions
27- command : |
28- echo "npm: $(npm --version)"
29- echo "node: $(node --version)"
30- npm ls || true
18+ name : set up build environment
19+ command : .circleci/env_build.sh
3120 - run :
3221 name : Pretest
3322 command : |
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ export NODE_OPTIONS=' --max-old-space-size=4096' && \
3+ echo " node version: $( node --version) " && \
4+ echo " npm version: $( npm --version) " && \
5+ npm ci && \
6+ npm ls || true
You can’t perform that action at this time.
0 commit comments