fix: use nodesource for nodejs to avoid debian repo 404s
This commit is contained in:
parent
627d0d13b9
commit
556e5002f1
|
|
@ -14,7 +14,10 @@ jobs:
|
||||||
- name: Install Node.js and Python deps
|
- name: Install Node.js and Python deps
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
apt-get update && apt-get install -y nodejs npm python3-yaml
|
apt-get update
|
||||||
|
apt-get install -y --fix-missing python3-yaml
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
|
apt-get install -y nodejs
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
|
|
@ -34,7 +37,10 @@ jobs:
|
||||||
- name: Install Node.js and Python deps
|
- name: Install Node.js and Python deps
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
apt-get update && apt-get install -y nodejs npm python3-yaml
|
apt-get update
|
||||||
|
apt-get install -y --fix-missing python3-yaml
|
||||||
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
|
apt-get install -y nodejs
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue