Skip to content

fix(contracts): ensure gasPrice has sufficient value (#1703) #4020

fix(contracts): ensure gasPrice has sufficient value (#1703)

fix(contracts): ensure gasPrice has sufficient value (#1703) #4020

Workflow file for this run

name: Circuit
on:
push:
branches: [dev]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes \
build-essential \
libgmp-dev \
libsodium-dev \
nasm \
nlohmann-json3-dev
- name: Install
run: |
pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: |
pnpm run build
- name: Download circom Binary v2.1.6
run: |
wget -qO /home/runner/work/circom https://github.com/iden3/circom/releases/download/v2.1.6/circom-linux-amd64
chmod +x /home/runner/work/circom
sudo mv /home/runner/work/circom /bin/circom
- name: Build circuits
run: pnpm run build-test-circuits-wasm
working-directory: circuits
- name: Test circuits
run: pnpm run test
working-directory: circuits