Skip to content

Set version v0.1.0-rc.0 (#25) #91

Set version v0.1.0-rc.0 (#25)

Set version v0.1.0-rc.0 (#25) #91

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