(feat) Ignore validator binaries #26
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: "CI for Product Bridge - synthetic change for testing" | |
on: | |
push: {} | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
name: "Bridge Tests" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install nodes packages | |
run: npm ci | |
working-directory: bridge-web | |
- name: Check bridge-web build | |
run: npm run build | |
working-directory: bridge-web | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run Foundry tests | |
run: forge test --disable-block-gas-limit | |
working-directory: smart-contracts |