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 9ef7649 commit ff9421cCopy full SHA for ff9421c
.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
19
strategy:
20
matrix:
21
os: [ubuntu-latest]
22
- node: ['18']
+ node: ["18"]
23
24
runs-on: ${{ matrix.os }}
25
@@ -34,3 +34,8 @@ jobs:
34
run: |
35
npm ci
36
npm run ci
37
+ - name: Upload coverage results to Coveralls
38
+ uses: coverallsapp/github-action@master
39
+ with:
40
+ github-token: ${{ secrets.GITHUB_TOKEN }}
41
+ path-to-lcov: ./coverage/lcov.info
vitest.config.ts
@@ -11,6 +11,7 @@ export default defineConfig({
11
'./example/*',
12
'./docs/*',
13
],
14
+ reporter: ['lcov']
15
},
16
environment: 'jsdom',
17
0 commit comments