Skip to content

chore(deps): bump js-yaml from 4.1.1 to 4.3.0 #335

chore(deps): bump js-yaml from 4.1.1 to 4.3.0

chore(deps): bump js-yaml from 4.1.1 to 4.3.0 #335

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: 🟢 Setup Node ${{ matrix.node }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.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