Skip to content

feat: Add jest tests and run it on workflow #1

feat: Add jest tests and run it on workflow

feat: Add jest tests and run it on workflow #1

Workflow file for this run

name: Jest on CI
on:
push:
branches: main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependecies
run: npm ci
- name: Run test
run: npm test