Skip to content

Commit

Permalink
[RN][CI]Update node installation on debian (0.71) (#41277)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi committed Dec 19, 2023
1 parent b0a27d2 commit bdc0ef3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Expand Up @@ -1151,7 +1151,15 @@ jobs:
command: |
apt update
apt install -y wget git curl
curl -sL https://deb.nodesource.com/setup_16.x | bash -
apt-get update
apt-get install -y ca-certificates curl gnupg
mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
NODE_MAJOR=16
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
apt-get update
apt install -y nodejs
npm install --global yarn
- checkout
Expand Down

0 comments on commit bdc0ef3

Please sign in to comment.