Fix workflows

This commit is contained in:
thepaperpilot 2022-11-07 22:10:42 -06:00
parent 8f52918e38
commit 05b10c6448
2 changed files with 4 additions and 0 deletions

View file

@ -10,6 +10,8 @@ jobs:
steps: steps:
- name: Checkout 🛎️ - name: Checkout 🛎️
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: recursive
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: | run: |

View file

@ -10,6 +10,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with:
submodules: recursive
- name: Use Node.js 16.x - name: Use Node.js 16.x
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with: