File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,3 @@ phases:
23
23
- npm -v
24
24
- node -v
25
25
- npm run coverage-node
26
- - npm run node-integration
Original file line number Diff line number Diff line change
1
+ version : 0.2
2
+
3
+ env :
4
+ variables :
5
+ NODE_OPTIONS : " --max-old-space-size=4096"
6
+ NPM_CONFIG_UNSAFE_PERM : true
7
+
8
+ phases :
9
+ install :
10
+ commands :
11
+ - apt remove nodejs
12
+ - TO_REMOVE=$(which npm)
13
+ - rm $TO_REMOVE
14
+ - TO_REMOVE=$(which node)
15
+ - rm $TO_REMOVE
16
+ - curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
17
+ - apt install -y nodejs
18
+ - node -v
19
+ - npm -v
20
+ - npm ci
21
+ - npm run build
22
+ build :
23
+ commands :
24
+ - npm -v
25
+ - node -v
26
+ - npm run verdaccio-publish
27
+ - npm run verdaccio-node-decrypt
28
+ - npm run verdaccio-node-encrypt
You can’t perform that action at this time.
0 commit comments