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

Commit

Permalink
CI: Add simple Node CI (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnsAnns authored Apr 30, 2024
2 parents 9357f2b + aad85b8 commit 9edd5dd
Showing 1 changed file with 28 additions and 0 deletions.
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

0 comments on commit 9edd5dd

Please sign in to comment.