Skip to content

Commit 9753db5

Browse files
committed
ci(node16): run integration test vectors
1 parent 18bd0a8 commit 9753db5

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

codebuild/nodejs16.yml

-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ phases:
2323
- npm -v
2424
- node -v
2525
- npm run coverage-node
26-
- npm run node-integration

codebuild/test_vectors/nodejs16.yml

+28
Original file line numberDiff line numberDiff line change
@@ -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+
- 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

0 commit comments

Comments
 (0)