This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
Revert "chore: zip pcb files to fix git invalid path error on windows… #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node Build | |
on: | |
push: | |
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 | |