Skip to content

Feat: Wrapped M bridging #162

Feat: Wrapped M bridging

Feat: Wrapped M bridging #162

Workflow file for this run

name: Forge Fork Tests
on:
push:
branches:
- main
pull_request:
permissions: write-all
jobs:
check:
name: Fork Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Apply patch
run: |
cd lib/example-native-token-transfers
git apply ../../.github/example-native-token-transfers.diff
- name: Setup Node
uses: actions/setup-node@v4
- name: Install NPM dependencies
run: npm install
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run Forge fork tests
run: make fork profile=ci
env:
MNEMONIC: ${{ secrets.MNEMONIC_FOR_TESTS }}
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
BASE_RPC_URL: ${{ secrets.BASE_RPC_URL }}
OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }}