Skip to content

Commit b76205c

Browse files
Workflow testing
1 parent 2941962 commit b76205c

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

.github/workflows/run-e2e-tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ jobs:
9292
run: npx playwright install --with-deps
9393
working-directory: e2e
9494

95+
- name: Run a bash command and print output
96+
run: |
97+
echo "Listing devbox processes:"
98+
devbox services ls
99+
shell: bash
100+
95101
- name: Wait for App to be available
96102
uses: nev7n/wait_for_response@v1
97103
with:
@@ -101,11 +107,23 @@ jobs:
101107
interval: 1000
102108
continue-on-error: true
103109

110+
- name: Run a bash command and print output
111+
run: |
112+
echo "Listing devbox processes:"
113+
devbox services ls
114+
shell: bash
115+
104116
- name: Run Playwright tests
105117
run: npx playwright test
106118
working-directory: e2e
107119
continue-on-error: true
108120

121+
- name: Run a bash command and print output
122+
run: |
123+
echo "Listing devbox processes:"
124+
devbox services ls
125+
shell: bash
126+
109127
- uses: actions/upload-artifact@v4
110128
if: ${{ !cancelled() }}
111129
with:

process-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ processes:
1616
description: Sync library check metadata from library-api to Firebase Storage
1717
command: ./bin/library/sync-metadata
1818
depends_on:
19-
library-api:
20-
condition: process_log_ready
2119
firebase-emulators:
2220
condition: process_log_ready
2321
availability:

0 commit comments

Comments
 (0)