Skip to content

Main Merge Updates #301

Main Merge Updates

Main Merge Updates #301

Workflow file for this run

name: Deploy all resources to DEV
run-name: DEV deploy - @${{ github.actor }}
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
test-unit:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
name: Run Unit Tests
steps:
- uses: actions/checkout@v4
env:
HUSKY: "0"
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'yarn'
- name: Restore Yarn Cache
uses: actions/cache@v4
with:
path: node_modules
key: yarn-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
restore-keys: |
yarn-modules-${{ runner.os }}-
- name: Set up Python 3.11 for testing
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Run unit testing
run: make test_unit
deploy-test-dev:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
concurrency:
group: ${{ github.event.repository.name }}-dev-env
cancel-in-progress: false
environment: "AWS DEV"
name: Deploy to DEV and Run Tests
needs:
- test-unit
steps:
- uses: actions/checkout@v4
env:
HUSKY: "0"
- name: Set up Node for testing
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'yarn'
- name: Restore Yarn Cache
uses: actions/cache@v4
with:
path: node_modules
key: yarn-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-dev
restore-keys: |
yarn-modules-${{ runner.os }}-
- uses: aws-actions/setup-sam@v2
with:
use-installer: true
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::427040638965:role/GitHubActionsRole
role-session-name: Core_Dev_Deployment
aws-region: us-east-1
- name: Publish to AWS
run: make deploy_dev
env:
HUSKY: "0"
VITE_RUN_ENVIRONMENT: dev
<<<<<<< HEAD

Check failure on line 94 in .github/workflows/deploy-dev.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-dev.yml

Invalid workflow file

You have an error in your yaml syntax on line 94
test-dev:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
name: Run Live Tests
needs:
- deploy-dev
concurrency:
group: ${{ github.event.repository.name }}-dev-env
cancel-in-progress: false
steps:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/checkout@v4
env:
HUSKY: "0"
- name: Set up Python 3.11 for testing
uses: actions/setup-python@v5
with:
python-version: 3.11
=======
>>>>>>> ca4496e7001f85a4ab625597558b8b9064395a64
- name: Run health check
run: make dev_health_check
- name: Run live testing
run: make test_live_integration
env:
JWT_KEY: ${{ secrets.JWT_KEY }}
- name: Run E2E testing
run: make test_e2e
env:
PLAYWRIGHT_USERNAME: ${{ secrets.PLAYWRIGHT_USERNAME }}
PLAYWRIGHT_PASSWORD: ${{ secrets.PLAYWRIGHT_PASSWORD }}