Skip to content

Commit d27d508

Browse files
committed
fixing names
1 parent 1efde71 commit d27d508

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
submodules: false
4949

5050
- name: Build and start Docker Compose services
51-
run: docker-compose -f compose.yaml up --build -d && cd test && npm install && npm run test:local
51+
run: docker-compose -f docker-compose.yaml up --build -d && cd test && npm install && npm run test:local
5252

5353
- name: Recursively show cwd
5454
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /app
77
# Copy the entire project into the container
88
COPY . .
99

10-
RUN ./setup_github.sh && docker-compose up --build -d
10+
RUN docker-compose -f docker-compose.yaml up --build --no-deps
1111

1212
# Build and run the test service using Docker Compose
1313
CMD ["docker", "compose", "run", "test", "cypress", "run"]

build_github.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
source ./setup_github.sh
33

44
# Run Docker Compose without local volumes
5-
docker-compose -f compose.yaml up --build --no-deps
5+
docker-compose -f docker-compose.yaml up --build --no-deps

build_local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
source ./setup_local.sh
44

55
# Run Docker Compose
6-
docker-compose -f compose.yaml up --build
6+
docker-compose -f docker-compose.yaml up --build
File renamed without changes.

up_github.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
source ./setup_github.sh
44

55
# Run Docker Compose
6-
docker-compose -f compose.yaml up
6+
docker-compose -f docker-compose.yaml up

up_local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
source ./setup_local.sh
44

55
# Run Docker Compose
6-
docker-compose -f compose.yaml up
6+
docker-compose -f docker-compose.yaml up

0 commit comments

Comments
 (0)