Skip to content

v1.3.0

v1.3.0 #37

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run lint
npm test