increase timeout of profiler integration test to 30s #12851
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: Core | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
schedule: | |
- cron: '0 4 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
shimmer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/node/setup | |
- run: yarn install | |
- uses: ./.github/actions/node/oldest | |
- run: yarn test:shimmer:ci | |
- uses: ./.github/actions/node/latest | |
- run: yarn test:shimmer:ci | |
- uses: codecov/codecov-action@v3 |