Skip to content

build submodules

build submodules #288

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Git checkout
uses: actions/checkout@v2
- name: NPM ci, build, & test
run: |
git submodule update --init --recursive
npm ci
npm run build-snarkyjs
npm run build-proof_aggregator
npm run build --if-present
npm run integration
env:
CI: true