We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
main
1 parent b70b372 commit b06dcd8Copy full SHA for b06dcd8
.github/workflows/rust.yml
@@ -77,14 +77,20 @@ jobs:
77
runs-on: ubuntu-latest # proprietary github image, not ubuntu:latest
78
container:
79
image: ubuntu:latest # actual ubuntu:latest that ubuntu publishes
80
+ env:
81
+ DEBIAN_FRONTEND: "noninteractive"
82
steps:
83
- uses: actions/checkout@v3
84
- name: Install dependencies
85
run: |
86
+ cat /etc/*-release
87
apt-get -qq update
- apt-get -qq install -y nodejs npm
88
+ apt-get -qq upgrade
89
+ apt-get -qq install -y curl
90
+ curl -fsSL https://deb.nodesource.com/setup_18.x | bash
91
+ apt-get -qq update
92
+ apt-get -qq install -y nodejs
93
npm install -g yarn
- cat /etc/*-release
94
which node
95
which npm
96
which yarn
0 commit comments