Selaa lähdekoodia

fix node install step

Michael Bolin 2 vuotta sitten
vanhempi
commit
faea4e4790
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      .github/workflows/verify-build.yml

+ 3 - 1
.github/workflows/verify-build.yml

@@ -16,8 +16,10 @@ jobs:
         run: apt-get -y update
         run: apt-get -y update
       - name: install curl
       - name: install curl
         run: apt-get -y install curl
         run: apt-get -y install curl
-      - name: install Node.js
+      - name: fetch Node.js
         run: curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
         run: curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
+      - name: install Node.js
+        run: sudo apt-get install -y nodejs
       - name: install yarn
       - name: install yarn
         run: npm install -g yarn
         run: npm install -g yarn
       - name: Checkout Code
       - name: Checkout Code