Skip to content

chore: Update keystore address + bump version (#28) #100

chore: Update keystore address + bump version (#28)

chore: Update keystore address + bump version (#28) #100

Workflow file for this run

name: Unit tests
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
OPENVM_FAST_TEST: "1"
jobs:
circuit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: "Install Node.js"
uses: "actions/setup-node@v4"
with:
node-version: "23.x"
cache: "pnpm"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: ./pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Run Unit Tests
run: pnpm test