Skip to content

chore(deps): bump github/codeql-action from 3.25.13 to 3.26.0 #1144

chore(deps): bump github/codeql-action from 3.25.13 to 3.26.0

chore(deps): bump github/codeql-action from 3.25.13 to 3.26.0 #1144

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:
- 18.x
- 20.x
- 22.x
architecture: [x64, x86]
os:
- windows-2019
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
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