Skip to content

0.3.7

0.3.7 #195

Workflow file for this run

name: CI
on: [push]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm run test