From 8ece7032510b2908243a8dc4a14a6eac5b7b79e3 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 25 Jun 2021 09:11:18 +0000 Subject: [PATCH] ci: enforce codestyle for tests --- --- /dev/null +++ b/.github/workflows/tests_codestyle.yml @@ -0,0 +1,14 @@ +name: Tests code style + +on: [push] + +jobs: + build: + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: cd tests && yarn + - name: Run ESLint + run: cd tests && yarn eslint --ext .ts,.js src/ \ No newline at end of file -- gitstuff