Skip to content

More friendly first tip message #119

More friendly first tip message

More friendly first tip message #119

name: Integration tests
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-integration:
timeout-minutes: 15
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.5.1
- run: yarn --immutable
- run: yarn build:docker
- run: yarn test:integration --verbose
- name: Debug application container logs
if: failure()
run: cat integration_tests/containter_logs/application.log
- name: Debug rococo container logs
if: failure()
run: cat integration_tests/containter_logs/rococo.log
- name: Debug westend container logs
if: failure()
run: cat integration_tests/containter_logs/westend.log