-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65f0d57
commit 33b9753
Showing
8 changed files
with
90 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Run Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- staging | ||
pull_request: | ||
branches: | ||
- main | ||
- staging | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Compose | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y docker-compose | ||
- name: Create Environment Files | ||
env: | ||
QUESTION_SERVICE_URL: ${{ vars.QUESTION_SERVICE_URL }} | ||
USER_SERVICE_URL: ${{ vars.USER_SERVICE_URL }} | ||
JWT_SECRET: ${{ secrets.JWT_SECRET }} | ||
FIREBASE_CREDENTIAL_PATH: ${{ vars.QUESTION_SERVICE_FIREBASE_CREDENTIAL_PATH }} | ||
DB_CLOUD_URI: ${{ secrets.USER_SERVICE_DB_CLOUD_URI }} | ||
USER_SERVICE_PORT: ${{ vars.USER_SERVICE_PORT }} | ||
run: | | ||
cd ./apps/frontend | ||
echo "NEXT_PUBLIC_QUESTION_SERVICE_URL=$QUESTION_SERVICE_URL" >> .env | ||
echo "NEXT_PUBLIC_USER_SERVICE_URL=$USER_SERVICE_URL" >> .env | ||
cd ../question-service | ||
echo "FIREBASE_CREDENTIAL_PATH=$FIREBASE_CREDENTIAL_PATH" >> .env | ||
echo "JWT_SECRET=$JWT_SECRET" >> .env | ||
cd ../user-service | ||
echo "DB_CLOUD_URI=$DB_CLOUD_URI" >> .env | ||
echo "PORT=$USER_SERVICE_PORT" >> .env | ||
echo "JWT_SECRET=$JWT_SECRET" >> .env | ||
- name: Create Database Credential Files | ||
env: | ||
FIREBASE_JSON: ${{ secrets.QUESTION_SERVICE_FIREBASE_CREDENTIAL }} | ||
FIREBASE_CREDENTIAL_PATH: ${{ vars.QUESTION_SERVICE_FIREBASE_CREDENTIAL_PATH }} | ||
run: | | ||
cd ./apps/question-service | ||
echo "$FIREBASE_JSON" > "./$FIREBASE_CREDENTIAL_PATH" | ||
- name: Build and Run Services | ||
run: | | ||
cd ./apps | ||
docker-compose up --build -d | ||
- name: Run Tests | ||
env: | ||
FRONTEND_URL: ${{ vars.FRONTEND_URL }} | ||
USER_SERVICE_URL: ${{ vars.USER_SERVICE_URL }} | ||
QUESTION_SERVICE_URL: ${{ vars.QUESTION_SERVICE_URL }} | ||
run: | | ||
curl -sSL $QUESTION_SERVICE_URL | ||
# curl -fsSL $FRONTEND_URL | ||
# curl -fsSL l $USER_SERVICE_URL | ||
# We can add more tests here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Replace with the corresponding url, credentials and endpoint | ||
# URL endpoints of the services | ||
NEXT_PUBLIC_QUESTION_SERVICE_URL="http://localhost:8080/" | ||
NEXT_PUBLIC_USER_SERVICE_URL="http://localhost:3001/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
# Mongo DB connection URL | ||
DB_CLOUD_URI=<CONNECTION_STRING> | ||
DB_LOCAL_URI=mongodb://127.0.0.1:27017/peerprepUserServiceDB | ||
PORT=3001 | ||
|
||
# Will use cloud MongoDB Atlas database | ||
ENV=PROD | ||
# Port for the user-service | ||
PORT=3001 | ||
|
||
# Secret for creating JWT signature | ||
JWT_SECRET=you-can-replace-this-with-your-own-secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.