Skip to content

chore: turn e2e enterprise tests into e2e premium tests #14979

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

Merged
merged 5 commits into from
Oct 16, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
duh
  • Loading branch information
aslilac committed Oct 16, 2024
commit 0ab20c8f316b35eae9fc50ea307fb93e2fc734e7
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -536,14 +536,14 @@ jobs:
working-directory: site

# Run tests that don't require a premium license without a premium license
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.enterprise && '2' || '1' }}
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.premium && '2' || '1' }}
if: ${{ !matrix.variant.premium }}
env:
DEBUG: pw:api
working-directory: site

# Run all of the tests with a premium license
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.enterprise && '2' || '1' }}
- run: pnpm playwright:test --forbid-only --workers ${{ matrix.variant.premium && '2' || '1' }}
if: ${{ matrix.variant.premium }}
env:
DEBUG: pw:api
Expand Down
Loading