Skip to content

Add NextJS dashboard template #344

Add NextJS dashboard template

Add NextJS dashboard template #344

Workflow file for this run

name: test
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- ready_for_review
- synchronize
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install Backend and Sources
uses: ./.github/actions/backend
# Currently failing
# - name: 🔭 Run CDK Unit Tests
# run: npm run test
# working-directory: infrastructure
deploy-dev:
name: Deploy Dev
runs-on: ubuntu-latest
needs: [unit-tests]
permissions:
actions: write
contents: read
id-token: write
steps:
- name: 🚫 Cancel Previous Runs
uses: styfle/[email protected]
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 🔑 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_SERVICE_ROLE_DEV }}
aws-region: us-east-1
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install Backend and Sources
uses: ./.github/actions/backend
- name: 📥 Install Frontend
uses: ./.github/actions/frontend
- name: 🗒️ Create aws-exports.js
run: |
touch aws-exports.js
echo const awsmobile = { aws_project_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_cognito_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_user_pools_id: \'${{secrets.COGNITO_USERPOOL_ID_DEV}}\', aws_user_pools_web_client_id: \'${{ secrets.COGNITO_WEB_CLIENT_ID_DEV }}\', mandatorySignIn: true, aws_appsync_graphqlEndpoint: \'${{ secrets.APPSYNC_ENDPOINT_DEV }}\', aws_appsync_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_appsync_authenticationType: \'AMAZON_COGNITO_USER_POOLS\' } >> aws-exports.js
echo export default awsmobile >> aws-exports.js
working-directory: frontend/app
- name: 🗒️ Create constants.ts
run: |
touch constants.ts
working-directory: frontend
- name: 🏗 Build Frontend
run: npm run build-frontend
working-directory: infrastructure
- name: 🗒️ Create .env
run: |
touch .env
echo DLQ_NOTIFICATIONS=${{ secrets.DLQ_NOTIFICATIONS }} >> .env
working-directory: infrastructure
- name: 🚀 Deploy Backend
run: npm run deploy dev
working-directory: infrastructure
- name: 🚀 Deploy Frontend
run: npx sst deploy --stage dev
working-directory: frontend
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
needs: [deploy-dev]
steps:
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install CDK Dependencies
run: npm install
working-directory: infrastructure
- name: 📥 Install Frontend
uses: ./.github/actions/frontend
# TODO Deploy backend and frontend
# - name: Run Cypress Frontend Tests
# run: npx cypress run --env username=${{ secrets.CYPRESS_USERNAME }},password=${{ secrets.CYPRESS_PASSWORD }}
# working-directory: frontend/container