Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reducing flakiness in the tests #47

Merged
merged 11 commits into from
Jun 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/run-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,32 @@ on:
required: false
default: ''

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
run-e2e:
name: ${{ format('Run e2e tests for {0}', github.event.inputs.environment) }}
runs-on: ubuntu-20.04
# don't allow two tests to run this section in the environment because they will delete all the
# experiments in the first step
concurrency:
group: ${{ github.event.inputs.environment }}
steps:
- id: checkout
name: Check out source code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- id: setup-node-cache
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'
cache-dependency-path: 'e2e'

- id: logging
name: Log GitHub input context
env:
Expand Down
Loading