Skip to content

Commit b1ce58e

Browse files
authored
test: add coverage option (#74)
1 parent b1b2d63 commit b1ce58e

File tree

6 files changed

+785
-243
lines changed

6 files changed

+785
-243
lines changed

.github/workflows/standard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Check format, lint and imports
2828
run: npm run check
2929
- name: Test
30-
run: npm run test
30+
run: npm run test:coverage
3131
- name: Build
3232
run: npm run build
3333
- name: Publish

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ dist-ssr
2020
*.njsproj
2121
*.sln
2222
*.sw?
23+
24+
# Test coverage
25+
coverage

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"files": {
4-
"ignore": [".husky/**", "dist/**", "node_modules/**"]
4+
"ignore": [".husky/**", "coverage/**", "dist/**", "node_modules/**"]
55
},
66
"organizeImports": {
77
"enabled": true

0 commit comments

Comments
 (0)