Skip to content

build(deps): bump form-data from 4.0.0 to 4.0.4 #597

build(deps): bump form-data from 4.0.0 to 4.0.4

build(deps): bump form-data from 4.0.0 to 4.0.4 #597

Workflow file for this run

name: ci
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
on:
push:
branches:
- master
- development
pull_request:
branches:
- master
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install ZKsync's Foundry
uses: dutterbutter/foundry-zksync-toolchain@v1
- name: Output Foundry Version
run: forge --version
- name: Install Dependencies
run: yarn
- name: Compile Project
run: npx hardhat compile
- name: Verify Hashed Constants
run: node verify_hashed_constants.js
- name: Run Tests
run: forge test -vvv
- name: Run Tests - ZKsync Environment
run: DAPP_TEST_FUZZ_RUNS=5 forge test --zksync -vvv --suppress-warnings assemblycreate