File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments