File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,10 @@ jobs:
39
39
runs-on : ubuntu-latest
40
40
41
41
strategy :
42
+ fail-fast : false
42
43
matrix :
43
44
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
44
45
node-version : [12.x, 14.x, 16.x, 17.x]
45
- include :
46
- - node-version : 12.x
47
- ts-node-compiler-options : ' {"target":"es2019"}'
48
46
49
47
steps :
50
48
- uses : actions/checkout@v2
54
52
node-version : ${{ matrix.node-version }}
55
53
cache : ' npm'
56
54
- run : npm ci
55
+ - name : Target older ts version for nodejs 12
56
+ if : matrix.node-version == '12.x'
57
+ run : echo "TS_NODE_COMPILER_OPTIONS='{\"target":"es2019\"}'" >> $GITHUB_ENV
57
58
- run : npm test
58
- env :
59
- TS_NODE_COMPILER_OPTIONS : ${{ matrix.ts-node-compiler-options }}
60
59
# Currently broken
61
60
# - run: npm run node-coveralls
You can’t perform that action at this time.
0 commit comments