From e7009473e6588dafe40aa1f95a902e3b303a8328 Mon Sep 17 00:00:00 2001 From: Gsk54 Date: Mon, 9 Jan 2023 15:15:21 +0100 Subject: [PATCH] fix ci --check --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c34d5a6..ccd31f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,9 +18,9 @@ test-api-dev: services: - docker:dind script: - - docker-compose -f docker-compose.ci.yml up -d + - docker-compose -f docker-compose.ci.yml --env-file .env.test up -d - sh ci/wait-up.sh - - docker-compose -f docker-compose.ci.yml logs + - docker-compose -f docker-compose.ci.yml --env-file .env.test logs - docker exec -t v3-user sh -c "npm run test" rules: - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'