feat: multichain-testing #2
Workflow file for this run
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: Multichain E2E Tests | |
on: | |
# for now, only run on-demand | |
push: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
orchestration-e2e: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['18.x'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
path: ./agoric-sdk | |
- uses: ./agoric-sdk/.github/actions/restore-node | |
with: | |
node-version: ${{ matrix.node-version }} | |
path: ./agoric-sdk | |
- name: yarn link | |
run: | | |
yarn link-cli ~/bin/agoric | |
echo "/home/runner/bin" >> $GITHUB_PATH | |
working-directory: ./agoric-sdk | |
- name: Install @agoric/mutlichain-testing deps | |
run: yarn install | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Lint @agoric/mutlichain-testing | |
run: yarn lint | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Start Starship Infrastructure | |
id: starship-infra | |
uses: cosmology-tech/[email protected] | |
with: | |
# uses ghcr.io/agoric/agoric-sdk:dev image (latest master) | |
values: ./agoric-sdk/multichain-testing/config.ci.yaml | |
port-forward: true | |
version: 0.2.2 | |
- name: Run @agoric/orchestration E2E Tests | |
run: yarn test | |
working-directory: ./agoric-sdk/multichain-testing |