Skip to content

Clean up README / fix semver (#34) #78

Clean up README / fix semver (#34)

Clean up README / fix semver (#34) #78

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "14", "16"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: npm install, run build/lint/tsc
run: |
npm install
bin/ci-check
env:
CI: true