Skip to content

Update to 16.0

Update to 16.0 #60

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true