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 15
15
steps :
16
16
- checkout
17
17
- 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
31
20
- run :
32
21
name : Pretest
33
22
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