Build and test the Node.js wrapper in CI

This commit is contained in:
Oliver Hamlet
2025-04-22 19:22:37 +01:00
parent 5a33e16eb3
commit 66cd9bfc61
+10
View File
@@ -114,6 +114,16 @@ jobs:
maturin build --target ${{ matrix.target.triple }} --release
- name: Build the Node.js wrapper
working-directory: nodejs
run: |
npm install
npm run build
- name: Run the Node.js wrapper's tests
working-directory: nodejs
run: npm test
- name: Build the CXX wrapper layer
working-directory: cxx
run: cargo build --release --target ${{ matrix.target.triple }}