Use Node 16 for CI workflow

This commit is contained in:
Daz DeBoer 2023-02-18 16:48:29 -07:00
parent 553793aaea
commit 8d49e559aa
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
2 changed files with 7 additions and 1 deletions

View file

@ -3,7 +3,7 @@
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/
name: Check dist directory
on:
push:

View file

@ -11,7 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/setup-node@v2.4.1
with:
node-version: 16.x
- run: |
npm -v
node -v
npm install
npm run all
test: # make sure the action works on a clean machine without building