Skip to content

Commit

Permalink
Use Node 16 for CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Feb 18, 2023
1 parent 553793a commit 8d49e55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8d49e55

Please sign in to comment.