@@ -507,10 +507,10 @@ jobs:
507
507
fail-fast : false
508
508
matrix :
509
509
variant :
510
- - enterprise : false
510
+ - premium : false
511
511
name : test-e2e
512
- - enterprise : true
513
- name : test-e2e-licensed
512
+ - premium : true
513
+ name : test-e2e-premium
514
514
name : ${{ matrix.variant.name }}
515
515
steps :
516
516
- name : Checkout
@@ -534,20 +534,20 @@ jobs:
534
534
- run : pnpm playwright:install
535
535
working-directory : site
536
536
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
538
538
- run : pnpm playwright:test --forbid-only --workers 1
539
- if : ${{ !matrix.variant.enterprise }}
539
+ if : ${{ !matrix.variant.premium }}
540
540
env :
541
541
DEBUG : pw:api
542
542
working-directory : site
543
543
544
- # Run all of the tests with an enterprise license
544
+ # Run all of the tests with a premium license
545
545
- run : pnpm playwright:test --forbid-only --workers 1
546
- if : ${{ matrix.variant.enterprise }}
546
+ if : ${{ matrix.variant.premium }}
547
547
env :
548
548
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"
551
551
working-directory : site
552
552
# Temporarily allow these to fail so that I can gather data about which
553
553
# tests are failing.
@@ -557,15 +557,15 @@ jobs:
557
557
if : always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork
558
558
uses : actions/upload-artifact@v4
559
559
with :
560
- name : failed-test-videos${{ matrix.variant.enterprise && '-enterprise ' || '-agpl' }}
560
+ name : failed-test-videos${{ matrix.variant.premium && '-premium ' || '-agpl' }}
561
561
path : ./site/test-results/**/*.webm
562
562
retention-days : 7
563
563
564
564
- name : Upload pprof dumps
565
565
if : always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork
566
566
uses : actions/upload-artifact@v4
567
567
with :
568
- name : debug-pprof-dumps${{ matrix.variant.enterprise && '-enterprise ' || '-agpl' }}
568
+ name : debug-pprof-dumps${{ matrix.variant.premium && '-premium ' || '-agpl' }}
569
569
path : ./site/test-results/**/debug-pprof-*.txt
570
570
retention-days : 7
571
571
0 commit comments