From b3e2808e7a2dcb206b8ab3ac5a0d06463873f79a Mon Sep 17 00:00:00 2001 From: Efremov Alexey Date: Mon, 30 Aug 2021 18:01:47 +0300 Subject: [PATCH] Add: github action for linting --- .github/workflows/lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..5d7b701 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,13 @@ +name: Lint + +on: [push] + +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: stefanoeb/eslint-action@1.0.2 + working-directory: ./js + with: + files: js/packages