We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1148a19 commit 6e35ebfCopy full SHA for 6e35ebf
.github/workflows/e2e-cat-app-test.yml
@@ -67,6 +67,10 @@ jobs:
67
- name: Install dependencies
68
run: bun install --frozen-lockfile
69
70
+ - name: Set Environment Variables
71
+ run: |
72
+ echo "${{ secrets.ENV_LOCAL }}" > .env.local
73
+
74
- name: Wait for PostgreSQL to be ready
75
run: |
76
echo "Waiting for PostgreSQL to start..."
@@ -91,3 +95,9 @@ jobs:
91
95
run: bun evals/e2e/e2e-cat-app-script.ts
92
96
# The script has its own timeouts, but we can add a general timeout for the step
93
97
timeout-minutes: 5 # Adjust as needed, the script itself has a 2-minute task timeout + setup time
98
99
100
+ - name: Open interactive debug shell
101
+ if: ${{ failure() }}
102
+ uses: mxschmitt/action-tmate@v3
103
+ timeout-minutes: 30 # optional guard
0 commit comments