issue # gitea cache test
Some checks failed
Test CI / build (push) Failing after 3m42s

This commit is contained in:
geonhee-min
2025-11-26 16:38:45 +09:00
parent 9bd7df97d4
commit c58ee43112
2 changed files with 3 additions and 2 deletions

View File

@@ -45,4 +45,5 @@ jobs:
run: |
cp -r dist $DOCKER_VOLUME/scheduler/back/
cp -r node_modules $DOCKER_VOLUME/scheduler/back/
ls $DOCKER_VOLUME/scheduler/back
ls $DOCKER_VOLUME/scheduler/back
docker exec -it scheduler_back pm2 reload scheduler_back

View File

@@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
return 'Hello World!\nReload Test!';
}
}