Skip to content

Updated Change log notes #145

Updated Change log notes

Updated Change log notes #145

Workflow file for this run

name: Build
"on":
- push
jobs:
build:
name: "Build and Test on Node ${{ matrix.node_version }} and ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
node_version:
- 18
- 20
- 22
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- uses: actions/checkout@v3
- name: "Use Node.js ${{ matrix.node_version }}"
uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node_version }}"
- name: npm build and test
run: |
npm ci
npm run lint