We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1614f35 commit a90f025Copy full SHA for a90f025
.github/workflows/test.yaml
@@ -16,10 +16,11 @@ jobs:
16
node-version: ${{ matrix.node-version }}
17
cache: npm
18
- run: npm ci
19
+ - run: npm i -D @vitest/coverage-v8
20
- run: npm run lint
- - run: npm test -- --coverage --coverageDirectory=coverage/results-${{ matrix.node-version }}
21
+ - run: npm test -- --coverage
22
- uses: actions/upload-artifact@v3
23
with:
24
name: vitest-results-${{ matrix.node-version }}
- path: coverage/results-${{ matrix.node-version }}/*.xml
25
+ path: coverage/*
26
if: ${{ always() }}
test/index.spec.ts renamed to test/index.test.ts
0 commit comments