Skip to content

Commit 6d74c7d

Browse files
author
Eric Wheeler
committed
fix: Add compile step to CI workflow to ensure WASM files are available
The TreeSitter tests were failing in CI because the WASM files weren't being copied to the dist directory before running the tests. This adds an explicit compile step to ensure the WASM files are properly built and copied. Signed-off-by: Eric Wheeler <[email protected]>
1 parent 5fa847f commit 6d74c7d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/code-qa.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ jobs:
7373
cache: 'npm'
7474
- name: Install dependencies
7575
run: npm run install:all
76+
- name: Compile (to build and copy WASM files)
77+
run: npm run compile
7678
- name: Run unit tests
7779
run: npx jest --silent
7880

0 commit comments

Comments
 (0)