Skip to content

github actions for circuit builds and e2e tests #23

github actions for circuit builds and e2e tests

github actions for circuit builds and e2e tests #23

Workflow file for this run

name: e2e
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
integration-test:
runs-on: ubuntu-latest
steps:
- name: Install circom
uses: supplypike/setup-bin@v4
with:
uri: https://github.com/iden3/circom/releases/download/v2.1.9/circom-linux-amd64
name: circom
version: 2.1.9
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: install snarkjs
run: |
npm install -g snarkjs
- name: Checkout circuits
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup temp dir for the artifacts
run: |
mkdir -p ${{ runner.temp }}/zeto-artifacts
- name: Build circuits
env:
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts
PTAU_DOWNLOAD_PATH: ${{ runner.temp }}/zeto-artifacts
working-directory: zkp/circuits
run: |
npm install
npm run gen
- name: Run golang e2e tests
env:
PROVING_KEYS_ROOT: ${{ runner.temp }}/zeto-artifacts
CIRCUITS_ROOT: ${{ $GITHUB_WORKSPACE }}/zkp/js/lib

Check failure on line 51 in .github/workflows/e2e.yaml

View workflow run for this annotation

GitHub Actions / e2e

Invalid workflow file

The workflow is not valid. .github/workflows/e2e.yaml (Line: 51, Col: 26): Unexpected symbol: '$GITHUB_WORKSPACE'. Located at position 1 within expression: $GITHUB_WORKSPACE
working-directory: zkp/golang
run: |
make e2e
- name: Run js e2e tests
working-directory: zkp/js
run: |
npm install
npm run test:e2e
- name: Run Zeto Tokens hardhat tests
working-directory: solidity
run: |
npm install
npm t