Skip to content

Merge pull request #80 from HackRU/points-fix #98

Merge pull request #80 from HackRU/points-fix

Merge pull request #80 from HackRU/points-fix #98

Workflow file for this run

name: Unit Testing
on:
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npx jest tests/ --config=tests/jest.config.ts