Fix issue where batch merkle claims could be blocked #429
This file contains 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: Run Tests | |
on: [push] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
environment: Test | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- run: npm install | |
- uses: onbjerg/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- run: ETH_RPC_MAINNET=${{secrets.ETH_RPC_MAINNET}} npm run test |