File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 15
15
strategy :
16
16
matrix :
17
17
# Maintenance and active LTS
18
- node-version : [14, 16]
18
+ node-version : [14, 16, 18 ]
19
19
os : [ubuntu-latest]
20
20
21
21
steps :
43
43
strategy :
44
44
matrix :
45
45
# Maintenance and active LTS
46
- node-version : [14, 16]
46
+ node-version : [14, 16, 18 ]
47
47
os : [ubuntu-latest]
48
48
49
49
steps :
Original file line number Diff line number Diff line change @@ -28,15 +28,17 @@ before(async function () {
28
28
[ localhost , localhostForURL ] = await helper . getLoopbackHost ( )
29
29
} )
30
30
31
- teardown ( ( ) => {
32
- files . forEach ( ( file ) => {
33
- try {
34
- fs . unlinkSync ( file )
35
- } catch ( e ) {
36
- console . log ( e )
37
- }
31
+ if ( process . env . CI ) {
32
+ teardown ( ( ) => {
33
+ files . forEach ( ( file ) => {
34
+ try {
35
+ fs . unlinkSync ( file )
36
+ } catch ( e ) {
37
+ console . log ( e )
38
+ }
39
+ } )
38
40
} )
39
- } )
41
+ }
40
42
41
43
test ( 'defaults to info level' , t => {
42
44
let fastify = null
You can’t perform that action at this time.
0 commit comments