From a89f0f7944bc455e87407d6277c51e17fdea5612 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Sun, 29 Nov 2020 19:59:32 +0000 Subject: [PATCH] add linting to CI --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b249f09d..de2155d6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: