Skip to content

Commit d54ee74

Browse files
Don't auto-build before every test run
1 parent f3e0f77 commit d54ee74

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
node-version: 'latest'
1414
- run: npm ci
1515
- run: npm install -g tsx
16+
- run: npm run build
1617
- run: npm test
1718

1819
publish:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"build": "tsc",
2020
"start": "node dist/index.js",
2121
"dev": "tsc && node dist/index.js",
22-
"test": "tsc && NODE_OPTIONS=--experimental-vm-modules jest",
22+
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
2323
"approve-task": "node dist/src/cli.js approve-task",
2424
"list-tasks": "node dist/src/cli.js list"
2525
},

0 commit comments

Comments
 (0)