Skip to content

Commit a095a4c

Browse files
authored
fix: don't prepare tests on postinstall (#61)
* fix: avoid postinstall test prep * chore: update readme * chore: update test runner with pretest script
1 parent dbe70e0 commit a095a4c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/run-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919

2020
- name: 'Install dependencies'
2121
run: npm ci
22-
- name: 'build'
22+
- name: 'Build'
2323
run: npm run build
24+
- name: 'Prepare Fixtures'
25+
run: npm run pretest
2426
- name: 'Test'
2527
run: npm run test:ci -- --shard=${{ matrix.shard }}

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ How to add new integration test scenarios to the application:
1717
4. Add your test
1818

1919
> Currently the tests require a built version of the `dist/run/handlers/cache.cjs` so you need to
20-
> run `npm run build` before executing the integration tests.
20+
> run `npm run build` before executing the integration tests. In addition, the integration tests
21+
> need to be prepared before first use. You can do this by running `npm run pretest`.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"node": ">=16.0.0"
1414
},
1515
"scripts": {
16-
"postinstall": "node tests/prepare.mjs",
16+
"pretest": "node tests/prepare.mjs",
1717
"build": "tsc",
1818
"build:debug": "tsc --sourceMap",
1919
"build:watch": "tsc --watch",

0 commit comments

Comments
 (0)