-
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.
chore: Update frontend deployment workflow
- Loading branch information
1 parent
4eb99a5
commit a6ccd14
Showing
1 changed file
with
68 additions
and
69 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 |
---|---|---|
|
@@ -10,73 +10,73 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
# test-e2e: | ||
# name: "Frontend E2E Tests" | ||
# 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.DEV_DB_URL }} | ||
# envkey_NEXTAUTH_URL: "http://localhost:3000/" | ||
# 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_SLACK_CLIENT_ID: ${{ secrets.SLACK_CLIENT_ID }} | ||
# envkey_SLACK_CLIENT_SECRET: ${{ secrets.SLACK_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 Server | ||
# run: npm run dev & | ||
# working-directory: knowx | ||
|
||
# - name: Run Tests | ||
# uses: cypress-io/github-action@v6 | ||
# with: | ||
# browser: chrome | ||
# headed: true | ||
# wait-on: "http://localhost:3000" | ||
# working-directory: knowx | ||
# env: | ||
# CYPRESS_CACHE_FOLDER: ~/.cache/Cypress | ||
|
||
# - name: Upload screenshots | ||
# uses: actions/upload-artifact@v4 | ||
# if: failure() | ||
# with: | ||
# name: cypress-screenshots | ||
# path: /home/runner/work/itesm-socioformador-feb-jun-2024-Croods/itesm-socioformador-feb-jun-2024-Croods/knowx/cypress/screenshots | ||
|
||
# - 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-e2e: | ||
name: "Frontend E2E Tests" | ||
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.DEV_DB_URL }} | ||
envkey_NEXTAUTH_URL: "http://localhost:3000/" | ||
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_SLACK_CLIENT_ID: ${{ secrets.SLACK_CLIENT_ID }} | ||
envkey_SLACK_CLIENT_SECRET: ${{ secrets.SLACK_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 Server | ||
run: npm run dev & | ||
working-directory: knowx | ||
|
||
- name: Run Tests | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
browser: chrome | ||
headed: true | ||
wait-on: "http://localhost:3000" | ||
working-directory: knowx | ||
env: | ||
CYPRESS_CACHE_FOLDER: ~/.cache/Cypress | ||
|
||
- name: Upload screenshots | ||
uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: /home/runner/work/itesm-socioformador-feb-jun-2024-Croods/itesm-socioformador-feb-jun-2024-Croods/knowx/cypress/screenshots | ||
|
||
- 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" | ||
unit-tests: | ||
name: "Frontend Unit Tests" | ||
|
@@ -101,8 +101,7 @@ jobs: | |
run: npm run test:ci | ||
|
||
deploy: | ||
# needs: [test-e2e, unit-tests] | ||
needs: unit-tests | ||
needs: [test-e2e, unit-tests] | ||
name: "Deploy to AWS - PRODUCTION" | ||
environment: prod | ||
runs-on: ubuntu-latest | ||
|