fix(replay): Use session.started
for min/max duration check
#298
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: 'Detect flaky tests' | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'packages/browser-integration-tests/suites/**' | |
branches-ignore: | |
- master | |
env: | |
HEAD_COMMIT: ${{ github.event.inputs.commit || github.sha }} | |
NX_CACHE_RESTORE_KEYS: | | |
nx-Linux-${{ github.ref }}-${{ github.event.inputs.commit || github.sha }} | |
nx-Linux-${{ github.ref }} | |
nx-Linux | |
# Cancel in progress workflows on pull_requests. | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
flaky-detector: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 60 | |
name: 'Check tests for flakiness' | |
# Also skip if PR is from master -> develop | |
if: ${{ github.base_ref != 'master' && github.ref != 'refs/heads/master' }} | |
steps: | |
- name: Check out current branch | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'package.json' | |
- name: Install dependencies | |
run: yarn install --ignore-engines --frozen-lockfile | |
- name: NX cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: .nxcache | |
key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }} | |
restore-keys: ${{ env.NX_CACHE_RESTORE_KEYS }} | |
- name: Build packages | |
run: yarn build | |
- name: Get npm cache directory | |
id: npm-cache-dir | |
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT | |
- name: Get Playwright version | |
id: playwright-version | |
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Check if Playwright browser is cached | |
id: playwright-cache | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-Playwright-${{steps.playwright-version.outputs.version}} | |
- name: Install Playwright browser if not cached | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
run: npx playwright install --with-deps | |
env: | |
PLAYWRIGHT_BROWSERS_PATH: ${{steps.npm-cache-dir.outputs.dir}} | |
- name: Install OS dependencies of Playwright if cache hit | |
if: steps.playwright-cache.outputs.cache-hit == 'true' | |
run: npx playwright install-deps | |
- name: Determine changed tests | |
uses: getsentry/[email protected] | |
id: changed | |
with: | |
list-files: json | |
filters: | | |
browser_integration: packages/browser-integration-tests/suites/** | |
- name: Detect flaky tests | |
run: yarn test:detect-flaky | |
working-directory: packages/browser-integration-tests | |
env: | |
CHANGED_TEST_PATHS: ${{ steps.changed.outputs.browser_integration_files }} | |
TEST_RUN_COUNT: 'AUTO' |