Skip to content

Add node.js v20 to test workflow #7

Add node.js v20 to test workflow

Add node.js v20 to test workflow #7

Workflow file for this run

name: Test on Windows
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
Test:
runs-on: windows-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
show-progress: false
- name: Install required node.js version
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Test package installation
run: npm install