Skip to content

Commit 4b9348d

Browse files
committed
Upgrade versions of github actions
1 parent 8d2d366 commit 4b9348d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,29 @@ jobs:
1010
build: # make sure build/ci work properly
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- run: |
1515
npm ci
1616
- run: |
1717
npm run all
1818
- name: Verify no unstaged changes
1919
run: __test__/verify-no-unstaged-changes.sh
20+
2021
test: # make sure the action works on a clean machine without building
2122
runs-on: ubuntu-latest
2223
steps:
23-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2425
- uses: ./
26+
27+
2528
pr-build-test:
2629
runs-on: ubuntu-latest
2730
if: ${{ github.event_name == 'pull_request' }}
2831
steps:
29-
- uses: actions/checkout@v2
30-
- uses: actions/setup-node@v2
32+
- uses: actions/checkout@v3
33+
- uses: actions/setup-node@v3
3134
with:
32-
node-version: '12'
35+
node-version: '16'
3336
- run: |
3437
npm ci
3538
- run: |

0 commit comments

Comments
 (0)