Skip to content

Update package.json #45

Update package.json

Update package.json #45

Workflow file for this run

name: Unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies with Yarn
run: yarn install
- name: Run unit tests
run: yarn jest