issue # gitlab-ci test

This commit is contained in:
geonhee-min
2025-11-24 11:16:51 +09:00
parent 7ea116dc8e
commit ab74fd1a71
2 changed files with 7 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ build: # This job runs in the build stage, which runs first.
- echo $DOCKER_COMPOSE_VOLUME - echo $DOCKER_COMPOSE_VOLUME
- rm -rf node_modules .yarn/install-state.gz - rm -rf node_modules .yarn/install-state.gz
- yarn install - yarn install
- yarn build - yarn build --webpack
- sudo cp -r $PWD/dist/. $DOCKER_VOLUME/scheduler/back/dist - sudo cp -r $PWD/dist/. $DOCKER_VOLUME/scheduler/back/dist
- sudo cp $PWD/package.json $DOCKER_VOLUME/scheduler/back/dist - sudo cp $PWD/package.json $DOCKER_VOLUME/scheduler/back/dist
- docker compose -f $DOCKER_COMPOSE_VOLUME/scheduler/docker-compose.yaml up -d back - docker compose -f $DOCKER_COMPOSE_VOLUME/scheduler/docker-compose.yaml up -d back

View File

@@ -1,4 +1,10 @@
{ {
"compilerOptions": {
"noEmitOnError": true,
"sourceMap": false,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"] "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
} }