We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abdc9d commit 887b71fCopy full SHA for 887b71f
2 files changed
.github/workflows/tests.yml
@@ -18,6 +18,6 @@ jobs:
18
- name: Use Latest Bun Bundle
19
uses: oven-sh/setup-bun@v2
20
- run: bun install
21
- - run: npx vitest --project unit --coverage.enabled true --watch=false
+ - run: bunx vitest --project unit --coverage.enabled true --watch=false
22
- name: 'Report Coverage'
23
uses: davelosert/vitest-coverage-report-action@v2
package.json
@@ -9,7 +9,7 @@
9
},
10
"scripts": {
11
"build": "bun build ./src/bin/app.ts --compile --outfile wp-tool",
12
- "test": "npm run test:unit & npm run test:e2e",
+ "test": "bun run test:unit & bun run test:e2e",
13
"test:unit": "vitest --project unit",
14
"test:unit:coverage": "vitest run --project unit --coverage",
15
"test:e2e": "vitest --project e2e",
0 commit comments