Skip to content

Add a comment

Add a comment #143

Workflow file for this run

name: Node CI
on: push
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- name: Set up Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
- name: Node.js Test Suite
run: |
npm install
npm run build
npm test