Skip to content

build: add lint step to CI #1

build: add lint step to CI

build: add lint step to CI #1

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm test