Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit 3c60b19

Browse files
committed
fix(ci): build native extension before TypeScript tests
The test-typescript job was failing because it attempted to load the native extension without building it first. All other test jobs run 'make all' to build the extension, but this step was missing from the TypeScript test job.
1 parent 0cd8c58 commit 3c60b19

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,8 @@ jobs:
145145
runs-on: ubuntu-24.04
146146
steps:
147147
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
148+
- name: Build native extension
149+
run: make all
148150
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
149151
with:
150152
node-version: 20

0 commit comments

Comments
 (0)