Skip to content

test(unit): setup jest, add tests + gh workflow #2

test(unit): setup jest, add tests + gh workflow

test(unit): setup jest, add tests + gh workflow #2

Workflow file for this run

name: 🧪 Unit Tests (Jest)
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: 🧪 Unit Tests (Jest)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 📦 Install modules
run: npm install
- name: ⚙️ Run tests
run: npm run test --coverage