Skip to content

Commit 887b71f

Browse files
committed
Fix bugs
1 parent 6abdc9d commit 887b71f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
- name: Use Latest Bun Bundle
1919
uses: oven-sh/setup-bun@v2
2020
- run: bun install
21-
- run: npx vitest --project unit --coverage.enabled true --watch=false
21+
- run: bunx vitest --project unit --coverage.enabled true --watch=false
2222
- name: 'Report Coverage'
2323
uses: davelosert/vitest-coverage-report-action@v2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"scripts": {
1111
"build": "bun build ./src/bin/app.ts --compile --outfile wp-tool",
12-
"test": "npm run test:unit & npm run test:e2e",
12+
"test": "bun run test:unit & bun run test:e2e",
1313
"test:unit": "vitest --project unit",
1414
"test:unit:coverage": "vitest run --project unit --coverage",
1515
"test:e2e": "vitest --project e2e",

0 commit comments

Comments
 (0)