diff --git a/.github/workflows/dev_frontend-deploy.yml b/.github/workflows/dev_frontend-deploy.yml index 330dcf1..da21450 100644 --- a/.github/workflows/dev_frontend-deploy.yml +++ b/.github/workflows/dev_frontend-deploy.yml @@ -24,3 +24,7 @@ jobs: file: ./client/Dockerfile push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/dev_${{ secrets.DOCKERHUB_FRONTEND_REPO }}:latest + + - name: Lint Code + run: | + eslint . --rule "@typescript-eslint/ban-ts-comment: off" diff --git a/.github/workflows/frontend-deploy.yml b/.github/workflows/frontend-deploy.yml index b46a7bb..2a18e4c 100644 --- a/.github/workflows/frontend-deploy.yml +++ b/.github/workflows/frontend-deploy.yml @@ -24,3 +24,7 @@ jobs: file: ./client/Dockerfile push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_FRONTEND_REPO }}:latest + + - name: Lint Code + run: | + eslint . --rule "@typescript-eslint/ban-ts-comment: off"