-
Notifications
You must be signed in to change notification settings - Fork 1
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
b500e9f
commit 22e1ada
Showing
1 changed file
with
54 additions
and
54 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 |
---|---|---|
|
@@ -5,63 +5,63 @@ on: | |
- H010-UserHistory | ||
|
||
jobs: | ||
test: | ||
name: "Frontend Tests" | ||
environment: prod | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
working-directory: knowx | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
working-directory: knowx | ||
|
||
- name: Make envfile | ||
uses: SpicyPizza/[email protected] | ||
with: | ||
envkey_API_ROOT_ROUTE: ${{ secrets.API_ROOT_ROUTE }} | ||
envkey_DB_URL: ${{ secrets.DB_URL }} | ||
envkey_NEXTAUTH_URL: ${{ secrets.NEXTAUTH_URL }} | ||
envkey_NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} | ||
envkey_GITHUB_ID: ${{ secrets.NEXTAUTH_GITHUB_ID }} | ||
envkey_GITHUB_SECRET: ${{ secrets.NEXTAUTH_GITHUB_SECRET }} | ||
envkey_GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} | ||
envkey_GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} | ||
envkey_EMAIL_SERVER_HOST: ${{ secrets.EMAIL_SERVER_HOST }} | ||
envkey_EMAIL_SERVER_PORT: ${{ secrets.EMAIL_SERVER_PORT }} | ||
envkey_EMAIL_SERVER_USER: ${{ secrets.EMAIL_SERVER_USER }} | ||
envkey_EMAIL_SERVER_PASSWORD: ${{ secrets.EMAIL_SERVER_PASSWORD }} | ||
envkey_EMAIL_FROM: ${{ secrets.EMAIL_FROM }} | ||
envkey_SENDGRID_API_KEY: ${{ secrets.SENDGRID_API_KEY }} | ||
directory: knowx | ||
|
||
- name: Run Tests | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
build: npm run build | ||
start: npm start | ||
working-directory: knowx | ||
|
||
- name: Send Deploy Failure Message | ||
if: failure() | ||
run: curl -s -X POST "${{ secrets.DISCORD_WEBHOOK }}" -d "content=💥 Front Testing Failed" | ||
|
||
- name: Send Deploy Success Message | ||
if: success() | ||
run: | | ||
curl -s -X POST "${{ secrets.DISCORD_WEBHOOK }}" -d "content=🧪 Front Testing Successful" | ||
# test: | ||
# name: "Frontend Tests" | ||
# environment: prod | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: Install Node | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: '20' | ||
# working-directory: knowx | ||
|
||
# - name: Install Dependencies | ||
# run: npm install | ||
# working-directory: knowx | ||
|
||
# - name: Make envfile | ||
# uses: SpicyPizza/[email protected] | ||
# with: | ||
# envkey_API_ROOT_ROUTE: ${{ secrets.API_ROOT_ROUTE }} | ||
# envkey_DB_URL: ${{ secrets.DB_URL }} | ||
# envkey_NEXTAUTH_URL: ${{ secrets.NEXTAUTH_URL }} | ||
# envkey_NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} | ||
# envkey_GITHUB_ID: ${{ secrets.NEXTAUTH_GITHUB_ID }} | ||
# envkey_GITHUB_SECRET: ${{ secrets.NEXTAUTH_GITHUB_SECRET }} | ||
# envkey_GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} | ||
# envkey_GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} | ||
# envkey_EMAIL_SERVER_HOST: ${{ secrets.EMAIL_SERVER_HOST }} | ||
# envkey_EMAIL_SERVER_PORT: ${{ secrets.EMAIL_SERVER_PORT }} | ||
# envkey_EMAIL_SERVER_USER: ${{ secrets.EMAIL_SERVER_USER }} | ||
# envkey_EMAIL_SERVER_PASSWORD: ${{ secrets.EMAIL_SERVER_PASSWORD }} | ||
# envkey_EMAIL_FROM: ${{ secrets.EMAIL_FROM }} | ||
# envkey_SENDGRID_API_KEY: ${{ secrets.SENDGRID_API_KEY }} | ||
# directory: knowx | ||
|
||
# - name: Run Tests | ||
# uses: cypress-io/github-action@v6 | ||
# with: | ||
# build: npm run build | ||
# start: npm start | ||
# working-directory: knowx | ||
|
||
# - name: Send Deploy Failure Message | ||
# if: failure() | ||
# run: curl -s -X POST "${{ secrets.DISCORD_WEBHOOK }}" -d "content=💥 Front Testing Failed" | ||
|
||
# - name: Send Deploy Success Message | ||
# if: success() | ||
# run: | | ||
# curl -s -X POST "${{ secrets.DISCORD_WEBHOOK }}" -d "content=🧪 Front Testing Successful" | ||
|
||
|
||
|
||
dev_deploy: | ||
needs: test | ||
# needs: test | ||
name: "Deploy to AWS - DEV" | ||
environment: dev | ||
runs-on: ubuntu-latest | ||
|
@@ -147,7 +147,7 @@ jobs: | |
production_deploy: | ||
needs: [test, dev_deploy] | ||
needs: dev_deploy | ||
name: "Deploy to AWS - PRODUCTION" | ||
environment: prod | ||
runs-on: ubuntu-latest | ||
|