We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9888012 commit 6f26df7Copy full SHA for 6f26df7
.github/workflows/reusable-e2e.yml
@@ -15,7 +15,7 @@ jobs:
15
uses: actions/setup-node@v4
16
with:
17
node-version: 23
18
- cache: "npm"
+ cache: 'npm'
19
20
- name: Install Frontend Dependencies
21
run: npm install
@@ -31,7 +31,7 @@ jobs:
31
32
- name: Start Backend with Docker Compose
33
working-directory: backend
34
- run: docker compose up -d
+ run: docker compose -f compose.yaml -f compose.test.yaml up -d --build
35
36
- name: Wait for Backend to be Ready
37
run: npx wait-on tcp:127.0.0.1:3000
@@ -53,4 +53,3 @@ jobs:
53
run: |
54
cd backend
55
docker compose down
56
-
0 commit comments