From bf97931995edc8a0207bc43c788dfd66bd983150 Mon Sep 17 00:00:00 2001 From: JubaAzul <118773284+JubaAzul@users.noreply.github.com> Date: Wed, 15 Jan 2025 13:20:50 -0500 Subject: [PATCH] Run with change ob frontend.yml --- .github/workflows/dev_frontend-deploy.yml | 4 ++++ .github/workflows/frontend-deploy.yml | 4 ++++ 2 files changed, 8 insertions(+) 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"