Skip to content

chore(deps): bump next from 14.2.12 to 14.2.13 #53

chore(deps): bump next from 14.2.12 to 14.2.13

chore(deps): bump next from 14.2.12 to 14.2.13 #53

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- name: Run Unit Tests
run: npm run test:unit