From ddf6ba87268aec05f8e0f5544cbc4cf6d8e2cb3f Mon Sep 17 00:00:00 2001 From: Oleh Bairak Date: Thu, 25 Jan 2024 00:11:11 +0100 Subject: [PATCH] fix: mew --- .github/workflows/integration-tests-api.yml | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/integration-tests-api.yml b/.github/workflows/integration-tests-api.yml index 1f3030b7f9..40c9218af9 100644 --- a/.github/workflows/integration-tests-api.yml +++ b/.github/workflows/integration-tests-api.yml @@ -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: @@ -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