We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18bd0a8 commit 9753db5Copy full SHA for 9753db5
codebuild/nodejs16.yml
@@ -23,4 +23,3 @@ phases:
23
- npm -v
24
- node -v
25
- npm run coverage-node
26
- - npm run node-integration
codebuild/test_vectors/nodejs16.yml
@@ -0,0 +1,28 @@
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
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:
+ - npm run verdaccio-publish
27
+ - npm run verdaccio-node-decrypt
28
+ - npm run verdaccio-node-encrypt
0 commit comments