Luke Else 2a1cbb8be3
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 1m36s
CHORE: #12 Corrected format of unit test
2025-05-31 18:32:09 +01:00

25 lines
455 B
YAML

name: Run Unit and Integration Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- "main"
- "development"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test