File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
strategy :
12
12
matrix :
13
- node-version : [12, 14, 16]
13
+ node-version : [14, 16]
14
14
fail-fast : false
15
15
steps :
16
16
- uses : actions/checkout@v2
@@ -25,19 +25,19 @@ jobs:
25
25
env :
26
26
CI : true
27
27
- name : Test – Eslint
28
- if : ${{ always() && matrix.node-version == '12 ' }}
28
+ if : ${{ always() && matrix.node-version == '14 ' }}
29
29
run : yarn eslint
30
30
- name : Test – TSCheck
31
- if : ${{ always() && matrix.node-version == '12 ' }}
31
+ if : ${{ always() && matrix.node-version == '14 ' }}
32
32
run : yarn tscheck
33
33
- name : Publish Test Report
34
- if : ${{ always() && matrix.node-version == '12 ' }}
34
+ if : ${{ always() && matrix.node-version == '14 ' }}
35
35
uses : mikepenz/action-junit-report@v2
36
36
with :
37
37
check_name : JUnit Annotations for Node ${{ matrix.node-version }}
38
38
report_paths : ' **/coverage/junit/**/*.xml'
39
39
- name : Send codecov.io stats
40
- if : matrix.node-version == '12 '
40
+ if : matrix.node-version == '14 '
41
41
run : bash <(curl -s https://codecov.io/bash) || echo ''
42
42
43
43
publish :
@@ -46,10 +46,10 @@ jobs:
46
46
runs-on : ubuntu-latest
47
47
steps :
48
48
- uses : actions/checkout@v2
49
- - name : Use Node.js 12
49
+ - name : Use Node.js 14
50
50
uses : actions/setup-node@v2
51
51
with :
52
- node-version : 12
52
+ node-version : 14
53
53
- name : Install node_modules
54
54
run : yarn install
55
55
- name : Build
You can’t perform that action at this time.
0 commit comments