Add on-chain decryption and update blocklock agent #23
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: build monorepo | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }}-moon | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build all projects | |
runs-on: [ "randamu-self-hosted-default" ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: 'true' | |
# handles rust caching | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
components: rustfmt,clippy | |
channel: '1.79.0' | |
target-dirs: 'marshmallow/target' | |
# handles Node caching | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '>=22.5.0' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Setup moon | |
uses: moonrepo/setup-toolchain@v0 | |
with: | |
auto-install: true | |
- name: Run moon CI | |
run: moon ci | |
- name: Print moon report | |
uses: moonrepo/run-report-action@v1 | |
if: success() || failure() | |
with: | |
access-token: ${{ secrets.GITHUB_TOKEN }} |