More friendly first tip message #119
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: 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 |