Skip to content

Commit a36e0d9

Browse files
committed
rename more thoroughly
1 parent 7870c5d commit a36e0d9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -507,10 +507,10 @@ jobs:
507507
fail-fast: false
508508
matrix:
509509
variant:
510-
- enterprise: false
510+
- premium: false
511511
name: test-e2e
512-
- enterprise: true
513-
name: test-e2e-licensed
512+
- premium: true
513+
name: test-e2e-premium
514514
name: ${{ matrix.variant.name }}
515515
steps:
516516
- name: Checkout
@@ -534,20 +534,20 @@ jobs:
534534
- run: pnpm playwright:install
535535
working-directory: site
536536

537-
# Run tests that don't require an enterprise license without an enterprise license
537+
# Run tests that don't require a premium license without a premium license
538538
- run: pnpm playwright:test --forbid-only --workers 1
539-
if: ${{ !matrix.variant.enterprise }}
539+
if: ${{ !matrix.variant.premium }}
540540
env:
541541
DEBUG: pw:api
542542
working-directory: site
543543

544-
# Run all of the tests with an enterprise license
544+
# Run all of the tests with a premium license
545545
- run: pnpm playwright:test --forbid-only --workers 1
546-
if: ${{ matrix.variant.enterprise }}
546+
if: ${{ matrix.variant.premium }}
547547
env:
548548
DEBUG: pw:api
549-
CODER_E2E_ENTERPRISE_LICENSE: ${{ secrets.CODER_E2E_ENTERPRISE_LICENSE }}
550-
CODER_E2E_REQUIRE_ENTERPRISE_TESTS: "1"
549+
CODER_E2E_LICENSE: ${{ secrets.CODER_E2E_LICENSE }}
550+
CODER_E2E_REQUIRE_PREMIUM_TESTS: "1"
551551
working-directory: site
552552
# Temporarily allow these to fail so that I can gather data about which
553553
# tests are failing.
@@ -557,15 +557,15 @@ jobs:
557557
if: always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork
558558
uses: actions/upload-artifact@v4
559559
with:
560-
name: failed-test-videos${{ matrix.variant.enterprise && '-enterprise' || '-agpl' }}
560+
name: failed-test-videos${{ matrix.variant.premium && '-premium' || '-agpl' }}
561561
path: ./site/test-results/**/*.webm
562562
retention-days: 7
563563

564564
- name: Upload pprof dumps
565565
if: always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork
566566
uses: actions/upload-artifact@v4
567567
with:
568-
name: debug-pprof-dumps${{ matrix.variant.enterprise && '-enterprise' || '-agpl' }}
568+
name: debug-pprof-dumps${{ matrix.variant.premium && '-premium' || '-agpl' }}
569569
path: ./site/test-results/**/debug-pprof-*.txt
570570
retention-days: 7
571571

0 commit comments

Comments
 (0)