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 21c6147 commit b7cacffCopy full SHA for b7cacff
.github/workflows/deploy.yml
@@ -44,7 +44,7 @@ jobs:
44
CLIENT_ID: ${{ secrets.CLIENT_ID }}
45
46
- name: Run tests
47
- run: npm test
+ run: npm test:ci
48
49
- name: Package artifact
50
run: |
.github/workflows/test.yml
@@ -42,5 +42,5 @@ jobs:
42
43
package.json
@@ -18,6 +18,7 @@
18
"check:fix": "biome check --write .",
19
"typecheck": "tsc --noEmit",
20
"test": "pnpm run build:dev && node --test dist/**/*.test.js",
21
+ "test:ci": "npm run build:ci && node --test dist/**/*.test.js",
22
"prepare": "husky",
23
"pre-commit": "lint-staged"
24
},
0 commit comments