Skip to content

Commit 0389484

Browse files
committed
ci: try something else
1 parent f0759c9 commit 0389484

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/.codecov.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
comment:
2+
layout: 'diff, flags, files'
3+
behavior: default
4+
require_changes: false
5+
require_base: false
6+
require_head: true

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"dbaeumer.vscode-eslint",
44
"editorconfig.editorconfig",
5-
"esbenp.prettier-vscode"
5+
"esbenp.prettier-vscode",
6+
"redhat.vscode-yaml"
67
]
78
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@
77

88
"files.associations": {
99
"*.json5": "jsonc"
10+
},
11+
12+
"yaml.schemas": {
13+
"https://json.schemastore.org/codecov.json": ".github/.codecov.yml"
1014
}
1115
}

vite.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ export default defineConfig({
66
test: {
77
coverage: {
88
all: true,
9-
reporter: ['lcov'],
10-
include: ['dist/cjs'],
9+
reporter: ['clover', 'cobertura', 'lcov', 'text'],
10+
// TODO christopher 2022-02-04: Later we will only cover `src` instead of `dist` and `src`
11+
include: ['dist', 'src'],
1112
},
1213
},
1314
});

0 commit comments

Comments
 (0)