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 b0a27d2 commit bdc0ef3Copy full SHA for bdc0ef3
.circleci/config.yml
@@ -1151,7 +1151,15 @@ jobs:
1151
command: |
1152
apt update
1153
apt install -y wget git curl
1154
- curl -sL https://deb.nodesource.com/setup_16.x | bash -
+
1155
+ apt-get update
1156
+ apt-get install -y ca-certificates curl gnupg
1157
+ mkdir -p /etc/apt/keyrings
1158
+ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
1159
+ NODE_MAJOR=16
1160
+ 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
1161
1162
1163
apt install -y nodejs
1164
npm install --global yarn
1165
- checkout
0 commit comments