We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 945c429 commit 3e23e14Copy full SHA for 3e23e14
.circleci/config.yml
@@ -1149,7 +1149,15 @@ jobs:
1149
command: |
1150
apt update
1151
apt install -y wget git curl
1152
- curl -sL https://deb.nodesource.com/setup_16.x | bash -
+
1153
+ apt-get update
1154
+ apt-get install -y ca-certificates curl gnupg
1155
+ mkdir -p /etc/apt/keyrings
1156
+ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
1157
+ NODE_MAJOR=16
1158
+ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
1159
1160
1161
apt install -y nodejs
1162
npm install --global yarn
1163
- checkout
0 commit comments