Skip to content

build(deps): bump github/codeql-action from 2.22.5 to 2.22.7 #789

build(deps): bump github/codeql-action from 2.22.5 to 2.22.7

build(deps): bump github/codeql-action from 2.22.5 to 2.22.7 #789

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:
matrix:
node-version: [ 16.x, 18.x, 20.x ]
architecture: [x64, x86]
os:
- windows-2019
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.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
run: |
npm run pretest -- --verbose
node test