Skip to content

Commit d992fa9

Browse files
committed
ci(node16): manually install node16 and test
1 parent b1d5237 commit d992fa9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

codebuild/nodejs16.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ env:
77
phases:
88
install:
99
commands:
10-
- apt remove nodejs
10+
- apt remove nodejs npm
11+
- TO_REMOVE=$(which npm)
12+
- rm $TO_REMOVE
13+
- TO_REMOVE=$(which node)
14+
- rm $TO_REMOVE
1115
- curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
1216
- apt install -y nodejs
1317
- node -v

0 commit comments

Comments
 (0)