Skip to content

Commit 797a029

Browse files
committed
Add compile-tests step to GitHub Actions CI workflow
The test-ci script loads pre-compiled test files from test/compiled/, but this directory is in .gitignore. Add explicit compile-tests step in the CI workflow to generate these files before running tests. This ensures the compiled test files exist in the CI environment.
1 parent f526aff commit 797a029

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm ci
1919
- name: Build
2020
run: npm run build
21+
- name: Compile tests
22+
run: npm run compile-tests
2123
- name: Run tests
2224
run: npm run test-ci
2325

0 commit comments

Comments
 (0)