Skip to content

Commit

Permalink
Merge pull request #412 from boostcampwm2023/server/fix/409
Browse files Browse the repository at this point in the history
cd 스크립트 수정
  • Loading branch information
khw3754 authored Feb 19, 2024
2 parents 9467057 + 0d48b4e commit e0db73d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/server-cd-spring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
REDIS_PORT: ${{secrets.REDIS_PORT}}
REDIS_TTL: ${{secrets.REDIS_TTL}}
run: |
cd server
cd server/spring
touch ./application.yml
echo "DB_HOST_IP=$DB_HOST_IP" >> application.yml
echo "DB_PORT=$DB_PORT" >> application.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
REDIS_PORT: ${{secrets.REDIS_PORT}}
REDIS_TTL: ${{secrets.REDIS_TTL}}
run: |
cd server
cd server/nest
touch prod.env
echo "DB_HOST_IP=$DB_HOST_IP" >> prod.env
echo "DB_PORT=$DB_PORT" >> prod.env
Expand Down
4 changes: 2 additions & 2 deletions server/nest/src/app.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ describe('AppController', () => {
});

describe('root', () => {
it('should return "Hello World!"', () => {
expect(appController.getHello()).toBe('Hello Catchy Tape');
it('should return "Catchy Tape!"', () => {
expect(appController.getHello()).toBe('Catchy Tape');
});
});
});
2 changes: 1 addition & 1 deletion server/nest/src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello Catchy Tape';
return 'Catchy Tape';
}
}

0 comments on commit e0db73d

Please sign in to comment.