Skip to content

chore(deps): bump the minor-deps-updates-main group across 1 directory with 3 updates #271

chore(deps): bump the minor-deps-updates-main group across 1 directory with 3 updates

chore(deps): bump the minor-deps-updates-main group across 1 directory with 3 updates #271

Workflow file for this run

name: Build & Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
jobs:
build_and_test:
strategy:
matrix:
node: [20, 22, 24]
os: ['ubuntu-latest', 'windows-latest']
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: 📥 Checkout Code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: 🟢 Setup Node ${{ matrix.node }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: 📦 Install Dependencies
run: npm ci
- name: 🏗️ Build
run: npm run build
- name: 🧪 Test Jest
run: npm run test