mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-10 02:05:37 +00:00
21 lines
383 B
YAML
21 lines
383 B
YAML
name: NodeJS bindings tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test-nodejs-bindings:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Setup
|
|
run: cd src && make blst
|
|
- name: Test
|
|
run: cd bindings/node.js && make build test
|