Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 8d49e55

Browse files
committed
Use Node 16 for CI workflow
1 parent 553793a commit 8d49e55

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# `index.js` is the code that will run.
44
# For our project, we generate this file through a build process from other source files.
55
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
6-
name: Check dist/
6+
name: Check dist directory
77

88
on:
99
push:

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14+
- name: Set Node.js 16.x
15+
uses: actions/[email protected]
16+
with:
17+
node-version: 16.x
1418
- run: |
19+
npm -v
20+
node -v
1521
npm install
1622
npm run all
1723
test: # make sure the action works on a clean machine without building

0 commit comments

Comments
 (0)