Skip to content

Commit

Permalink
Use action to install node
Browse files Browse the repository at this point in the history
  • Loading branch information
adpaco-aws committed Jul 8, 2024
1 parent 82b5c63 commit 4b43a13
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,17 @@ jobs:
curl -s https://bootstrap.pypa.io/pip/3.7/get-pip.py -o get-pip.py
python3 get-pip.py --force-reinstall
rm get-pip.py
apt-get remove npm
apt-get install wget
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
nvm install 16
# apt-get remove npm
# apt-get install wget
# wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# export NVM_DIR="$HOME/.nvm"
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# nvm install 16
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Checkout Kani
uses: actions/checkout@v4
Expand Down

0 comments on commit 4b43a13

Please sign in to comment.