switch westend to ah #143
Workflow file for this run
This file contains hidden or 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: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
# every week Monday 8:00 AM UTC | |
- cron: '0 8 * * 1' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-e2e: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 120 | |
container: "${{ vars.E2E_TESTS_CONTAINER }}" | |
steps: | |
- uses: actions/[email protected] | |
- name: Start a local Polkadot node | |
uses: ./.github/actions/run-polkadot | |
with: | |
polkadot-version: polkadot-v1.18.6 | |
- name: Wait for the node | |
run: | | |
until curl -s '127.0.0.1:9902'; do sleep 3; done | |
timeout-minutes: 1 | |
- uses: actions/[email protected] | |
with: | |
node-version: "22.5.1" | |
- run: yarn --immutable | |
- run: yarn test:e2e | |
timeout-minutes: 10 |