Skip to content

build(deps): bump ossf/scorecard-action from 2.3.0 to 2.3.1 #749

build(deps): bump ossf/scorecard-action from 2.3.0 to 2.3.1

build(deps): bump ossf/scorecard-action from 2.3.0 to 2.3.1 #749

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- 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