Skip to content

update changelog

update changelog #128

Workflow file for this run

# (c) William Belle, 2021-2023.
# See the LICENSE file for more details.
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Node.js ${{ matrix.node }} CI
strategy:
fail-fast: false
matrix:
node: [ '16', '17', '18', '19', '20', '21' ]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install and test
run: |
npm i
npm t