Skip to content

fix: deploy AWS ECS #18

fix: deploy AWS ECS

fix: deploy AWS ECS #18

Workflow file for this run

name: Run Node.js and React Tests
on: [push]
jobs:
nodejs_tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Node.js dependencies
run: npm install
- name: Run Node.js tests
run: npm run test
react_tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install React dependencies
run: npm install
- name: Run React tests
run: npm run test