From d7e5385b042c9ae6758f19331e4f2f9172803fa1 Mon Sep 17 00:00:00 2001 From: Alexander Rose <alexander.rose@weirdbyte.de> Date: Wed, 8 Apr 2020 17:41:25 -0700 Subject: [PATCH] add lint github action --- .github/lint.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/lint.yml diff --git a/.github/lint.yml b/.github/lint.yml new file mode 100644 index 000000000..50ced85b1 --- /dev/null +++ b/.github/lint.yml @@ -0,0 +1,12 @@ +name: Lint + +on: pull_request + +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: hallee/eslint-action@master + with: + repo-token: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file -- GitLab