Skip to content

build(deps): bump actions/dependency-review-action from 3.0.8 to 3.1.0 #711

build(deps): bump actions/dependency-review-action from 3.0.8 to 3.1.0

build(deps): bump actions/dependency-review-action from 3.0.8 to 3.1.0 #711

Workflow file for this run

name: Node.js CI Windows Platform
on: [push, pull_request]
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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
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