Skip to content

CI

CI #143

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup NodeJs
uses: actions/setup-node@v1
with:
node-version: "13.14.0"
- run: npm install
- run: npm run lint
- run: npm run test
- run: npm run typecheck
- run: npm run build