2022-11-22 20:43:15 +00:00
|
|
|
name: NodeJS bindings tests
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
2022-11-22 20:45:28 +00:00
|
|
|
test-nodejs-bindings:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-22 20:43:15 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Setup
|
2022-11-22 20:52:56 +00:00
|
|
|
run: cd src && make blst
|
2022-11-22 20:43:15 +00:00
|
|
|
- name: Test
|
|
|
|
run: cd bindings/node.js && make build test
|