File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
- name : ' Install dependencies'
21
21
run : npm ci
22
- - name : ' build '
22
+ - name : ' Build '
23
23
run : npm run build
24
+ - name : ' Prepare Fixtures'
25
+ run : npm run pretest
24
26
- name : ' Test'
25
27
run : npm run test:ci -- --shard=${{ matrix.shard }}
Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ How to add new integration test scenarios to the application:
17
17
4 . Add your test
18
18
19
19
> 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 ` .
Original file line number Diff line number Diff line change 13
13
"node" : " >=16.0.0"
14
14
},
15
15
"scripts" : {
16
- "postinstall " : " node tests/prepare.mjs" ,
16
+ "pretest " : " node tests/prepare.mjs" ,
17
17
"build" : " tsc" ,
18
18
"build:debug" : " tsc --sourceMap" ,
19
19
"build:watch" : " tsc --watch" ,
You can’t perform that action at this time.
0 commit comments