Update manual bridging guide to include withdrawal flow (#103) #324
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: End to End Test | |
on: [push] | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
build: | |
name: End to End Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 18.18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.18.x | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Run install | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Run build | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
- name: Run Test | |
run: | | |
yarn local:start & | |
yarn local:ci |