Skip to content

build(deps-dev): bump the dev group across 1 directory with 6 updates #795

build(deps-dev): bump the dev group across 1 directory with 6 updates

build(deps-dev): bump the dev group across 1 directory with 6 updates #795

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
tags:
- "*"
pull_request:
jobs:
Integration-checks:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6.3.0
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install Node.js packages
run: npm ci
- name: Lint and test
run: npm run test:ci
- name: Confirm integration
run: npm run test:integration