From 3547018e9f803a5ff747126e16b9ef559c3f95cf Mon Sep 17 00:00:00 2001 From: Husam Salhab <47015061+hsalhab@users.noreply.github.com> Date: Tue, 14 Jul 2020 10:10:18 -0400 Subject: Add linter to Github Actions (#18) * added lint.yml * updated to run on PRs * uses yarn lint * fixed linting error * fixed some more linting --- .github/workflows/lint.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/lint.yml (limited to '.github/workflows') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..ba1d0551 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,12 @@ +name: Lint +on: pull_request +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: yarn + - name: Run ESLint + run: yarn lint + -- cgit v1.2.3-70-g09d2