We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be57273 + 26b2e39 commit 3c8fb1aCopy full SHA for 3c8fb1a
.github/workflows/nodejs.yml
@@ -5,15 +5,13 @@ jobs:
5
build:
6
runs-on: ubuntu-latest
7
steps:
8
- - uses: actions/checkout@v2
9
- - name: Use Node.js 16.x
10
- uses: actions/setup-node@v1
11
- with:
12
- node-version: 16.x
13
- - name: npm install, build, and test
14
- run: |
15
- npm install
16
- npm run build
17
- npm test
18
- env:
19
- CI: true
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ with:
+ node-version: 18
+ registry-url: https://registry.npmjs.org/
+ cache: npm
+ - run: npm ci
+ - run: npm test
+ env:
+ CI: true
.github/workflows/publish.yml
@@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
- node-version: 14
registry-url: https://registry.npmjs.org/
cache: npm
- run: npm ci
0 commit comments