Skip to content

Merge pull request #67 from HackRU/name-in-points #87

Merge pull request #67 from HackRU/name-in-points

Merge pull request #67 from HackRU/name-in-points #87

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