Skip to content

Updated tests

Updated tests #2

Workflow file for this run

name: React CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
cd frontend
npm install
- name: Run Tests
run: |
cd frontend
npm run test