Skip to content

More friendly first tip message #125

More friendly first tip message

More friendly first tip message #125

Workflow file for this run

name: E2E tests
on:
pull_request:
push:
branches:
- master
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/checkout@v3.3.0
- name: Start a local Polkadot node
uses: ./.github/actions/run-polkadot
with:
polkadot-version: polkadot-v1.15.0
- name: Wait for the node
run: |
until curl -s '127.0.0.1:9902'; do sleep 3; done
timeout-minutes: 1
- uses: actions/setup-node@v3.5.1
with:
node-version: "22.5.1"
- run: yarn --immutable
- run: yarn test:e2e
timeout-minutes: 10