Skip to content

Commit

Permalink
Upgrade node version to fix build in main (#794)
Browse files Browse the repository at this point in the history
Upgrade node version to fix build in `main` (#794)
  • Loading branch information
avantgardnerio authored May 29, 2023
1 parent b70b372 commit b06dcd8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,20 @@ jobs:
runs-on: ubuntu-latest # proprietary github image, not ubuntu:latest
container:
image: ubuntu:latest # actual ubuntu:latest that ubuntu publishes
env:
DEBIAN_FRONTEND: "noninteractive"
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
cat /etc/*-release
apt-get -qq update
apt-get -qq install -y nodejs npm
apt-get -qq upgrade
apt-get -qq install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | bash
apt-get -qq update
apt-get -qq install -y nodejs
npm install -g yarn
cat /etc/*-release
which node
which npm
which yarn
Expand Down

0 comments on commit b06dcd8

Please sign in to comment.