chore: packages versions bump #600
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |