Skip to content

chore(deps): bump the all group across 1 directory with 10 updates #1442

chore(deps): bump the all group across 1 directory with 10 updates

chore(deps): bump the all group across 1 directory with 10 updates #1442

Workflow file for this run

name: Node.js CI Windows Platform
on: [push, pull_request]
env:
PYTHON_VERSION: '3.11'
permissions:
contents: read
jobs:
test:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
api_version:
- standard
- experimental
node-version:
- 20.x
- 22.x
- 24.x
- 25.x
architecture: [x64, x86]
os:
- windows-2022
- windows-2025
exclude:
# Skip when node 24.x or 25.x AND architecture is x86 since there is
# no published Node.js x86 build for those versions.
- node-version: 24.x
architecture: x86
- node-version: 25.x
architecture: x86
runs-on: ${{ matrix.os }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
- name: Check Node.js installation
run: |
node --version
npm --version
- name: Install dependencies
run: |
npm install
- name: npm test
shell: bash
run: |
if [ "${{ matrix.api_version }}" = "experimental" ]; then
export NAPI_VERSION=2147483647
fi
npm run pretest -- --verbose
node test