disable eslint in github workflow (#1412)

This commit is contained in:
Bruce Martin
2020-04-18 09:06:05 -07:00
committed by GitHub
parent 55ef1448e8
commit 5dc40158c4
+10 -10
View File
@@ -35,16 +35,16 @@ jobs:
- name: Lint with flake8
run: |
make lint-server
- name: Lint all with eslint
working-directory: ./client
if: github.event_name != 'pull_request'
run: |
make lint
- name: Lint diff with eslint
working-directory: ./client
if: github.event_name == 'pull_request'
run: |
make lint-diff
# - name: Lint all with eslint
# working-directory: ./client
# if: github.event_name != 'pull_request'
# run: |
# make lint
# - name: Lint diff with eslint
# working-directory: ./client
# if: github.event_name == 'pull_request'
# run: |
# make lint-diff
unit-test:
runs-on: ubuntu-latest