Skip to content

bump node from 18.x to 22.x (#101) #81

bump node from 18.x to 22.x (#101)

bump node from 18.x to 22.x (#101) #81

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@v4
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
cache: "npm"
- name: 📦 Install modules
run: npm install
- name: ⚙️ Run tests
run: npm run test --coverage