Skip to content

Commit 83fccc3

Browse files
committed
chore: Attempt to fix E2E tests
1 parent f24d197 commit 83fccc3

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@v6
2020
with:
21-
node-version-file: ".nvmrc"
22-
cache: "npm"
21+
node-version-file: '.nvmrc'
22+
cache: 'npm'
2323

2424
- name: Install dependencies
2525
run: npm ci
@@ -38,8 +38,8 @@ jobs:
3838
- name: Setup Node.js
3939
uses: actions/setup-node@v6
4040
with:
41-
node-version-file: ".nvmrc"
42-
cache: "npm"
41+
node-version-file: '.nvmrc'
42+
cache: 'npm'
4343

4444
- name: Install dependencies
4545
run: npm ci
@@ -62,8 +62,11 @@ jobs:
6262

6363
env:
6464
PUBLIC_SUPABASE_URL: ${{ secrets.PUBLIC_SUPABASE_URL }}
65-
PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.PUBLIC_SUPABASE_ANON_KEY }}
66-
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
65+
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
66+
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
67+
E2E_USERNAME_ID: ${{ secrets.E2E_USERNAME_ID }}
68+
E2E_USERNAME: ${{ secrets.E2E_USERNAME }}
69+
E2E_PASSWORD: ${{ secrets.E2E_PASSWORD }}
6770
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
6871

6972
steps:
@@ -73,8 +76,8 @@ jobs:
7376
- name: Setup Node.js
7477
uses: actions/setup-node@v6
7578
with:
76-
node-version-file: ".nvmrc"
77-
cache: "npm"
79+
node-version-file: '.nvmrc'
80+
cache: 'npm'
7881

7982
- name: Install dependencies
8083
run: npm ci
@@ -92,3 +95,4 @@ jobs:
9295
name: playwright-report
9396
path: playwright-report/
9497
retention-days: 7
98+

0 commit comments

Comments
 (0)