Skip to content

Commit

Permalink
fix: Update GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
clockworkgr committed Jan 29, 2024
1 parent 8971850 commit d8991b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'pnpm'
- name: 'Install Deps'
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
coverage: {
include: ["src/**/*.{test,spec}.ts"],
enabled: true,
reporter: "json-summary",
reporter: ["json", "json-summary"],
},
},
});

0 comments on commit d8991b1

Please sign in to comment.