Skip to content

Commit

Permalink
Add circuit unit test action
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Zhang <[email protected]>
  • Loading branch information
jimthematrix committed Aug 6, 2024
1 parent 1663a5d commit 9a80cf7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/circuit-unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Circuit Unit Tests

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

jobs:
circuit-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Checkout circuits
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run golang e2e tests
working-directory: zkp/js
run: |
npm install
npm t

0 comments on commit 9a80cf7

Please sign in to comment.