We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12faa3d commit 178fc71Copy full SHA for 178fc71
.github/workflows/ci.yml
@@ -23,3 +23,6 @@ jobs:
23
- run: |
24
npm clean-install
25
npm run test
26
+
27
+ - name: Coveralls
28
+ uses: coverallsapp/github-action@v2
package.json
@@ -38,7 +38,7 @@
38
"docs": "typedoc src/index.ts --out docs/v2",
39
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts",
40
"test": "run-s format:check test:types db:clean db:run test:run db:clean && node test/smoke.cjs && node test/smoke.mjs",
41
- "test:run": "jest --runInBand",
+ "test:run": "jest --runInBand --coverage",
42
"test:update": "run-s db:clean db:run && jest --runInBand --updateSnapshot && run-s db:clean",
43
"test:types": "run-s build && tsd --files 'test/**/*.test-d.ts'",
44
"db:clean": "cd test/db && docker compose down --volumes",
0 commit comments