Skip to content

Commit 9640fc1

Browse files
dr3nodkz
authored andcommitted
ci: upgrade github actions
1 parent 23f1fef commit 9640fc1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/nodejs.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
node-version: [14, 16, 18]
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v3
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- name: Install node_modules
@@ -25,13 +25,13 @@ jobs:
2525
env:
2626
CI: true
2727
- name: Test – Eslint, Tslint, Tscheck
28-
if: ${{ always() && matrix.node-version == '12' }}
28+
if: ${{ always() && matrix.node-version == '14' }}
2929
run: yarn lint
3030
- name: Flow checks
31-
if: ${{ always() && matrix.node-version == '12' }}
31+
if: ${{ always() && matrix.node-version == '14' }}
3232
run: yarn flow
3333
- name: Publish Test Report
34-
if: ${{ always() && matrix.node-version == '12' }}
34+
if: ${{ always() && matrix.node-version == '14' }}
3535
uses: mikepenz/action-junit-report@v2
3636
with:
3737
check_name: JUnit Annotations for Node ${{ matrix.node-version }}
@@ -42,9 +42,9 @@ jobs:
4242
needs: [tests]
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v2
45+
- uses: actions/checkout@v3
4646
- name: Use Node.js 14
47-
uses: actions/setup-node@v2
47+
uses: actions/setup-node@v3
4848
with:
4949
node-version: 14
5050
- name: Install node_modules

0 commit comments

Comments
 (0)