chore(deps-dev): bump webpack-dev-server from 4.15.1 to 5.0.2 (#7544) #366
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: 'pr:e2e:flakefinder' | |
on: | |
push: | |
branches: master | |
workflow_dispatch: | |
pull_request: | |
types: | |
- labeled | |
- opened | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
e2e-flakefinder: | |
if: contains(github.event.pull_request.labels.*.name, 'pr:e2e:flakefinder') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event.action == 'opened' | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/hydrogen' | |
- name: Cache NPM dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npx [email protected] install | |
- run: npm install --cache ~/.npm --no-audit --progress=false | |
- name: Run E2E Tests (Repeated 10 Times) | |
run: npm run test:e2e:stable -- --retries=0 --repeat-each=10 --max-failures=50 | |
- name: Archive test results | |
if: success() || failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
path: test-results | |
- name: Remove pr:e2e:flakefinder label (if present) | |
if: always() | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const { owner, repo, number } = context.issue; | |
const labelToRemove = 'pr:e2e:flakefinder'; | |
try { | |
await github.rest.issues.removeLabel({ | |
owner, | |
repo, | |
issue_number: number, | |
name: labelToRemove | |
}); | |
} catch (error) { | |
core.warning(`Failed to remove ' + labelToRemove + ' label: ${error.message}`); | |
} |