Skip to content

Happy new year ; ⬆️ node v #23

Happy new year ; ⬆️ node v

Happy new year ; ⬆️ node v #23

Workflow file for this run

name: Windows
on: [push]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i
npm run test-win