Skip to content

chore: update root package.json configuration #31

chore: update root package.json configuration

chore: update root package.json configuration #31

Workflow file for this run

name: Unit Tests
on:
pull_request:
types: [synchronize, opened, reopened]
push:
branches:
- main
- production
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Run Vitest tests
run: npm run test