Validate prefix on external controller additions (#22) #66
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
on: [push] | |
name: ts-client-integration-test | |
env: | |
RPC_URL: http://127.0.0.1:8545 | |
jobs: | |
check: | |
name: Ts-client integration test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Set Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install Dev Dependencies | |
working-directory: ./ts-client | |
run: yarn install --frozen-lockfile | |
- name: Run Anvil Node | |
run: anvil & | |
- name: Run tests | |
working-directory: ./ts-client | |
run: yarn run test:integration |