Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates #1061

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates #1061

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["master"]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
matrix:
node-version: [22.x, 24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build --ws --if-present
- name: Run tests
run: npm run coverage
- name: Send coverage report to Codecov
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3