File tree Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 2929 node-version : ${{ matrix.node-version }}
3030 cache : npm
3131 - name : Upgrade npm
32- run : npm install --global npm@^8.12
32+ run : npm install --global npm@^8.18
3333 - run : npm install --no-audit
3434 - run : npm run cover
3535 - uses : codecov/codecov-action@v2
5050 node-version : ^18
5151 cache : npm
5252 - name : Upgrade npm
53- run : npm install --global npm@^8.12
53+ run : npm install --global npm@^8.18
5454 - run : npm install --no-audit
5555 - run : npm i typescript@${TS_VERSION}
5656 env :
6969 node-version : ^18
7070 cache : npm
7171 - name : Upgrade npm
72- run : if [[ "$(npm -v)" != "8.12 .0" ]]; then npm install --global npm@8.12 .0; fi
72+ run : if [[ "$(npm -v)" != "8.18 .0" ]]; then npm install --global npm@8.18 .0; fi
7373 - run : npm install --no-audit
7474 - name : Test package-lock for unexpected modifications
7575 run : |
9090 with :
9191 node-version : ^18
9292 - name : Upgrade npm
93- run : npm install --global npm@^8.12
93+ run : npm install --global npm@^8.18
9494 - run : npm install --no-package-lock --no-audit
9595 - run : npm run cover
9696
@@ -104,6 +104,6 @@ jobs:
104104 node-version : ^18
105105 cache : npm
106106 - name : Upgrade npm
107- run : npm install --global npm@^8.12
107+ run : npm install --global npm@^8.18
108108 - run : npm install --no-audit
109109 - run : npx xo
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ module.exports = {
3636 {
3737 files : 'examples/**' ,
3838 rules : {
39+ 'ava/no-ignored-test-files' : 'off' ,
3940 'ava/no-only-test' : 'off' ,
4041 'unicorn/prefer-module' : 'off' ,
4142 } ,
Original file line number Diff line number Diff line change 158158 }
159159 },
160160 "volta" : {
161- "node" : " 18.3 .0" ,
162- "npm" : " 8.12 .0"
161+ "node" : " 18.8 .0" ,
162+ "npm" : " 8.18 .0"
163163 }
164164}
Original file line number Diff line number Diff line change 1717---tty-stream-chunk-separator
1818 [1mUncaught exception in ast-syntax-error.cjs[22m
1919
20+ ~/test-tap/fixture/report/edgecases/ast-syntax-error.cjs:3
21+ const fn = do {
22+ ^^
23+
2024 SyntaxError: Unexpected token 'do'
2125
2226---tty-stream-chunk-separator
Original file line number Diff line number Diff line change 11TAP version 13
22---tty-stream-chunk-separator
3- not ok 1 - SyntaxError: Unexpected token 'do'
3+ not ok 1 - ~/test-tap/fixture/report/edgecases/ast-syntax-error.cjs:3
4+ const fn = do {
5+ ^^
6+
7+ SyntaxError: Unexpected token 'do'
48 ---
59 name: SyntaxError
610 message: Unexpected token 'do'
You can’t perform that action at this time.
0 commit comments