Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

chore(deps-dev): bump the development-dependencies group with 2 updates #259

chore(deps-dev): bump the development-dependencies group with 2 updates

chore(deps-dev): bump the development-dependencies group with 2 updates #259

Workflow file for this run

name: Build & Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, latest]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Use Node v${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test