Skip to content

Add node test github workflow #6

Add node test github workflow

Add node test github workflow #6

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022]
node-version: ['18.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
continue-on-error: true
- run: npm test