Skip to content

Commit

Permalink
fix: mew
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Jan 24, 2024
1 parent c90456b commit ddf6ba8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/integration-tests-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,6 @@ jobs:
with:
fetch-depth: 0

- name: Cache Docker images
id: cache-docker-images
uses: actions/cache@v3
with:
path: |
/var/lib/docker/
# where the cache is stored -> /var/lib/docker/
key: ${{ runner.os }}-docker-${{ hashFiles('**/docker-compose.yaml') }}
restore-keys: |
${{ runner.os }}-docker-
- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -61,6 +50,17 @@ jobs:
run: |
docker-compose -f "docker-compose.yaml" up -d --build
- name: Cache Docker images
id: cache-docker-images
uses: actions/cache@v3
with:
path: |
/var/lib/docker/
# where the cache is stored -> /var/lib/docker/
key: ${{ runner.os }}-docker-${{ hashFiles('**/docker-compose.yaml') }}
restore-keys: |
${{ runner.os }} docker
- name: List running containers
run: docker ps

Expand Down

0 comments on commit ddf6ba8

Please sign in to comment.