Skip to content

Test integration test workflow #186

Test integration test workflow

Test integration test workflow #186

name: Frontend Tests
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Install Dependencies
run: npm install
- name: Run Unit Tests
run: npm run test:unit