test ci --check

This commit is contained in:
Gsk54 2023-01-10 11:40:48 +01:00
parent cacf0a3132
commit 5c8f0af6a9
2 changed files with 4 additions and 20 deletions

View File

@ -26,26 +26,9 @@ integration-test:
- docker:dind
script:
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
- sleep 30
- sh ci/wait-up.sh
- docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci logs
- docker exec -t v3-user sh -c "npm run test:integration:ci"
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
when: always
# test-api-dev:
# stage: test
# image: docker/compose:latest
# variables:
# DOCKER_TLS_CERTDIR: ""
# services:
# - docker:dind
# script:
# - docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci up -d
# - sleep 30
# - docker exec -t v3-user sh -c "npm run test:integration"
# - docker-compose -f docker-compose.ci.yml --env-file ci/.env.ci logs
# - docker exec -t v3-user sh -c "npm run test:integration"
# rules:
# - if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
# when: always

View File

@ -16,10 +16,11 @@ RUN npm ci
# Bundle app source
COPY . .
# Generate prisma client
RUN npx prisma generate
# Creates a "dist" folder
# Create a "dist" folder
RUN npm run build
# Start the server using the production build
# Start the server
CMD [ "node", "dist/main.js" ]