-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from J-hoplin1/fix/hotfix-0109
Fix: Fix swagger and add e2e-test github action
- Loading branch information
Showing
3 changed files
with
103 additions
and
42 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,100 @@ | ||
name: CI-Unit-Test | ||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
workflow_call: | ||
inputs: | ||
build_id: | ||
required: true | ||
type: number | ||
deploy_target: | ||
required: true | ||
type: string | ||
run-name: Unit/E2E test of ${{ github.ref_name }} by ${{ github.actor }} | ||
jobs: | ||
unit-testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout repository codes | ||
- name: Repository Checkout | ||
uses: actions/checkout@v4 | ||
# Setup environment for Node.js 18 | ||
- name: Node.js version 18 Environment setting | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
- name: Initialize .ci.env | ||
run: | | ||
touch .ci.env | ||
echo "DATABASE_URL=${{ secrets.DATABASE_URL}}" >> .ci.env | ||
echo "ADMIN_EMAIL=${{secrets.ADMIN_EMAIL}}" >> .ci.env | ||
echo "ADMIN_PW=${{secrets.ADMIN_PW}}" >> .ci.env | ||
echo "JWT_SECRET=${{secrets.JWT_SECRET}}" >> .ci.env | ||
echo "JUDGE_SERVER_ENDPOINT=${{secrets.JUDGE_SERVER_ENDPOINT}}" >> .ci.env | ||
- name: Install Node.js Dependencies | ||
run: npm install --force | ||
- name: Install dotenv-cli for dotenv cli | ||
run: npm install -g dotenv-cli | ||
- name: Initialize Prisma Client | ||
run: npm run ci:init | ||
- id: unit-test-phase | ||
name: Run Unit Test | ||
run: npm run ci:unit | ||
- name: 'Discord Alert - Success' | ||
if: steps.unit-test-phase.outcome == 'success' | ||
continue-on-error: true | ||
uses: rjstone/discord-webhook-notify@v1 | ||
with: | ||
severity: info | ||
details: 'Unit Test Result: Success' | ||
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | ||
- name: 'Discord Alert - Failed' | ||
if: steps.unit-test-phase.outcome != 'success' | ||
uses: rjstone/discord-webhook-notify@v1 | ||
with: | ||
severity: error | ||
details: 'Unit Test Result: Fail' | ||
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | ||
|
||
e2e-testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Checkout | ||
uses: actions/checkout@v4 | ||
- name: Node.js version 18 Environment setting | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
- name: Initialize .ci.env | ||
run: | | ||
touch .ci.env | ||
echo "DATABASE_URL=${{ secrets.DATABASE_URL}}" >> .ci.env | ||
echo "ADMIN_EMAIL=${{secrets.ADMIN_EMAIL}}" >> .ci.env | ||
echo "ADMIN_PW=${{secrets.ADMIN_PW}}" >> .ci.env | ||
echo "JWT_SECRET=${{secrets.JWT_SECRET}}" >> .ci.env | ||
echo "JUDGE_SERVER_ENDPOINT=${{secrets.JUDGE_SERVER_ENDPOINT}}" >> .ci.env | ||
- name: Install Node.js Dependencies | ||
run: npm install --force | ||
- name: Install dotenv-cli for dotenv cli | ||
run: npm install -g dotenv-cli | ||
- name: Initialize Prisma Client | ||
run: npm run ci:init | ||
- id: e2e-test-phase | ||
name: Run E2E Test | ||
run: npm run ci:e2e | ||
- name: 'Discord Alert - Success' | ||
if: steps.e2e-test-phase.outcome == 'success' | ||
continue-on-error: true | ||
uses: rjstone/discord-webhook-notify@v1 | ||
with: | ||
severity: info | ||
details: 'E2E Test Result: Success' | ||
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | ||
- name: 'Discord Alert - Fail' | ||
if: steps.e2e-test-phase.outcome != 'success' | ||
uses: rjstone/discord-webhook-notify@v1 | ||
with: | ||
severity: error | ||
details: 'E2E Test Result: Failed' | ||
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} |
This file was deleted.
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