add linting to CI

This commit is contained in:
Will Hunt 2020-11-29 19:59:32 +00:00 committed by GitHub
parent 6cd8d8f5a0
commit a89f0f7944
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,16 @@ on:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn
- run: yarn lint
test:
runs-on: ubuntu-latest
strategy: