88
99 strategy :
1010 matrix :
11- node-version : [20 .x, 22 .x]
11+ node-version : [18 .x, 20 .x]
1212
1313 steps :
1414 - uses : actions/checkout@v4
@@ -27,29 +27,28 @@ jobs:
2727
2828 - name : Checks
2929 run : yarn run checks
30- if : startsWith(matrix.node-version, '22.')
3130
3231 - name : Prettier
3332 run : yarn run lint:prettier
34- if : startsWith(matrix.node-version, '22 .')
33+ if : startsWith(matrix.node-version, '20 .')
3534
3635 - name : Eslint
3736 run : yarn run lint:eslint
38- if : startsWith(matrix.node-version, '22.')
39-
40- - name : Check nothing was forgotten before commit
41- if : startsWith(matrix.node-version, '22.')
42- run : yarn run repository-check-dirty
37+ if : startsWith(matrix.node-version, '20.')
4338
4439 - name : Generate Test Coverage
4540 run : yarn run test:coverage:json
46- if : startsWith(matrix.node-version, '22 .')
41+ if : startsWith(matrix.node-version, '20 .')
4742 env :
4843 CI : true
4944
5045 - name : Send results to codecov
51- uses : codecov/codecov-action@v5
46+ uses : codecov/codecov-action@v4
5247 with :
5348 fail_ci_if_error : true
5449 token : ${{ secrets.CODECOV_TOKEN }}
55- if : startsWith(matrix.node-version, '22.')
50+ if : startsWith(matrix.node-version, '20.')
51+
52+ - name : Check nothing was forgotten before commit
53+ if : startsWith(matrix.node-version, '20.')
54+ run : yarn run repository-check-dirty
0 commit comments