We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19046d7 commit aac038cCopy full SHA for aac038c
1 file changed
.github/workflows/e2e.yaml
@@ -28,9 +28,15 @@ jobs:
28
- name: Install dependencies
29
run: pnpm install
30
31
- - name: Run tests
+ - name: Build
32
+ run: pnpm --filter web run build
33
+
34
+ - name: Configure tests
35
working-directory: apps/web
36
env:
- # API_BASE_URL: ${{ github.event.deployment_status.environment_url }}
- DATABASE_URL: ${{ secrets.DATABASE_URL }}
- run: pnpm test
37
+ API_BASE_URL: ${{ github.event.deployment_status.environment_url }}
38
+ TOKEN: ${{ secrets.TOKEN }}
39
+ USER_ID: ${{ secrets.USER_ID }}
40
41
+ - name: Run tests
42
+ run: pnpm --filter web run test
0 commit comments