Skip to content

feat: update AWS deploy workflow to trigger on Docker test completion… #184

feat: update AWS deploy workflow to trigger on Docker test completion…

feat: update AWS deploy workflow to trigger on Docker test completion… #184

Workflow file for this run

name: Run Tests (Frontend)
on: [push]
jobs:
vite-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- name: Install packages
run: npm ci
- name: Print file tree (excluding node_modules)
run: tree -I 'node_modules'
- name: Run lint
run: npm run lint
- name: Build front-end files
run: npm run build
- name: Run tests
run: npm test