Skip to content

Revision 0.14.0

Revision 0.14.0 #874

Workflow file for this run

name: GitHub CI
on: [push, pull_request]
jobs:
npm:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install with npm
run: |
npm install
- name: Build
run: |
npm run build
- name: Run tests
run: |
npm run test