Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

배포한 서비스 모니터링 및 에러 디버깅 환경 구축 #290

Merged
merged 9 commits into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/cd-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Create .env file
run: |
echo "BASE_URL=${{ secrets.BASE_URL }}" > .env
echo "REACT_APP_GOOGLE_ANALYTICS=${{ secrets.REACT_APP_GOOGLE_ANALYTICS }}" >> .env
echo "SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}" >> .env
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env

- name: Run tests
run: npm run test
Expand Down Expand Up @@ -79,7 +82,7 @@ jobs:

- name: docker compose pull
run: |
docker compose -f ./frontend/docker-compose-fe.yml pull
docker compose -f ./frontend/docker-compose-fe.yml pull

- name: docker compose up
run: |
Expand Down
Loading
Loading