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 }}
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