gh action to run e2e tests #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: E2E Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Install deps | |
run: sudo apt -y install protobuf-compiler | |
- name: Install & display rust toolchain | |
run: rustup show | |
- name: Check targets are installed correctly | |
run: rustup target list --installed | |
- name: Build runtimes | |
run: cargo build --release --features astar,shiden | |
- name: Clone Astar E2E tests | |
run: git clone https://github.com/AstarNetwork/e2e-tests.git --depth 1 | |
- name: Copy runtimes | |
run: | | |
cp target/release/wbuild/astar-runtime/astar_runtime.compact.compressed.wasm e2e-tests/wasm/astar_runtime.wasm | |
cp target/release/wbuild/shiden-runtime/shiden_runtime.compact.compressed.wasm e2e-tests/wasm/shiden_runtime.wasm | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: 'yarn' | |
cache-dependency-path: e2e-tests/yarn.lock | |
- name: Run e2e test with new runtimes | |
env: | |
ASTAR_WASM: wasm/astar_runtime.wasm | |
SHIDEN_WASM: wasm/astar_runtime.wasm | |
run: | | |
cd e2e-tests | |
yarn --immutable | |
yarn update-env | |
yarn test |