commit 87e492bada79098172fe69105d96306c2b2b630b
parent 9b4351a90c13980324d032360ccad55c627d86d4
Author: MTRNord <mtrnord1@gmail.com>
Date: Mon, 18 Apr 2022 22:24:15 +0200
Add missing node install
Diffstat:
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml
@@ -35,6 +35,10 @@ jobs:
- name: Checkout 🛎️
if: ${{ github.ref != 'refs/heads/main' }}
uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ name: ${{ github.ref != 'refs/heads/main' }}
+ with:
+ node-version: "16"
- name: Install and Build 🔧
if: ${{ github.ref != 'refs/heads/main' }}
run: |
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
@@ -10,6 +10,10 @@ jobs:
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ name: Setup node
+ with:
+ node-version: "16"
- name: Install and Build 🔧
run: |