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 29
29
node-version : ${{ matrix.node-version }}
30
30
cache : npm
31
31
- name : Upgrade npm
32
- run : npm install --global npm@^8.12
32
+ run : npm install --global npm@^8.18
33
33
- run : npm install --no-audit
34
34
- run : npm run cover
35
35
- uses : codecov/codecov-action@v2
50
50
node-version : ^18
51
51
cache : npm
52
52
- name : Upgrade npm
53
- run : npm install --global npm@^8.12
53
+ run : npm install --global npm@^8.18
54
54
- run : npm install --no-audit
55
55
- run : npm i typescript@${TS_VERSION}
56
56
env :
69
69
node-version : ^18
70
70
cache : npm
71
71
- 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
73
73
- run : npm install --no-audit
74
74
- name : Test package-lock for unexpected modifications
75
75
run : |
90
90
with :
91
91
node-version : ^18
92
92
- name : Upgrade npm
93
- run : npm install --global npm@^8.12
93
+ run : npm install --global npm@^8.18
94
94
- run : npm install --no-package-lock --no-audit
95
95
- run : npm run cover
96
96
@@ -104,6 +104,6 @@ jobs:
104
104
node-version : ^18
105
105
cache : npm
106
106
- name : Upgrade npm
107
- run : npm install --global npm@^8.12
107
+ run : npm install --global npm@^8.18
108
108
- run : npm install --no-audit
109
109
- run : npx xo
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ module.exports = {
36
36
{
37
37
files : 'examples/**' ,
38
38
rules : {
39
+ 'ava/no-ignored-test-files' : 'off' ,
39
40
'ava/no-only-test' : 'off' ,
40
41
'unicorn/prefer-module' : 'off' ,
41
42
} ,
Original file line number Diff line number Diff line change 158
158
}
159
159
},
160
160
"volta" : {
161
- "node" : " 18.3 .0" ,
162
- "npm" : " 8.12 .0"
161
+ "node" : " 18.8 .0" ,
162
+ "npm" : " 8.18 .0"
163
163
}
164
164
}
Original file line number Diff line number Diff line change 17
17
---tty-stream-chunk-separator
18
18
[1mUncaught exception in ast-syntax-error.cjs[22m
19
19
20
+ ~/test-tap/fixture/report/edgecases/ast-syntax-error.cjs:3
21
+ const fn = do {
22
+ ^^
23
+
20
24
SyntaxError: Unexpected token 'do'
21
25
22
26
---tty-stream-chunk-separator
Original file line number Diff line number Diff line change 1
1
TAP version 13
2
2
---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'
4
8
---
5
9
name: SyntaxError
6
10
message: Unexpected token 'do'
You can’t perform that action at this time.
0 commit comments