diff --git a/.github/workflows/build_node.yml b/.github/workflows/build_node.yml new file mode 100644 index 00000000..0ea107f2 --- /dev/null +++ b/.github/workflows/build_node.yml @@ -0,0 +1,28 @@ +name: Node Build +on: + push: + paths: + - 'node/code/**' + - '.github/workflows/build_node.yml' + branches: + - main + pull_request: + paths: + - 'node/code/**' + - '.github/workflows/build_node.yml' + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: 'recursive' + - name: Build Node + run: | + cd node/code + BUILD_IN_DOCKER=1 make all +