We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553793a commit 8d49e55Copy full SHA for 8d49e55
2 files changed
.github/workflows/check-dist.yml
@@ -3,7 +3,7 @@
3
# `index.js` is the code that will run.
4
# For our project, we generate this file through a build process from other source files.
5
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
6
-name: Check dist/
+name: Check dist directory
7
8
on:
9
push:
.github/workflows/ci.yml
@@ -11,7 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v3
14
+ - name: Set Node.js 16.x
15
+ uses: actions/setup-node@v2.4.1
16
+ with:
17
+ node-version: 16.x
18
- run: |
19
+ npm -v
20
+ node -v
21
npm install
22
npm run all
23
test: # make sure the action works on a clean machine without building
0 commit comments