re-enable front-end lint test (#1483)

* change lint to only src

* reenable lint all
This commit is contained in:
Severiano Badajoz
2020-05-19 15:46:04 -07:00
committed by GitHub
parent 2992d17c1d
commit ce819383af
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -35,11 +35,11 @@ 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 src 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'
+1 -1
View File
@@ -25,7 +25,7 @@ build:
.PHONY: lint
lint:
npx eslint .
npx eslint ./src/
.PHONY: lint-diff
lint-diff: