Skip to content

fix: deprecation warnings #62

fix: deprecation warnings

fix: deprecation warnings #62

Workflow file for this run

name: Unit Tests
permissions:
contents: read
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: ☑️ Checkout
uses: actions/checkout@v6
- name: ⚙️ Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: 🏗️ Install Dependencies
run: npm ci
- name: 🧪 Run Tests
run: npm test