Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

CI: Add simple Node CI #53

Merged
merged 5 commits into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/build_node.yml
Original file line number Diff line number Diff line change
@@ -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