Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 1b3c8a8

Browse files
committed
Update test workflow
1 parent 153beac commit 1b3c8a8

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,18 @@ on: # rebuild any PRs and main branch changes
1010
- 'releases/*'
1111

1212
jobs:
13-
build: # make sure build/ci work properly
13+
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
- run: |
18-
npm ci
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
19+
- name: Install Node
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: 16
1923
env:
20-
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
21-
- run: |
22-
npm run all
24+
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
25+
26+
- run: npm ci
27+
- run: npm run all

0 commit comments

Comments
 (0)