diff --git a/.gitea/workflows/smart-clinic-compile-backend.yml b/.gitea/workflows/smart-clinic-compile-backend.yml index 81c9591..825fbe9 100644 --- a/.gitea/workflows/smart-clinic-compile-backend.yml +++ b/.gitea/workflows/smart-clinic-compile-backend.yml @@ -24,4 +24,4 @@ jobs: - name: Compile with Gradle run: | cd SmartClinicManagementSystem/app - ../../gradlew clean build \ No newline at end of file + ../../gradlew clean build -x test \ No newline at end of file diff --git a/.gitea/workflows/smart-clinic-lint-backend.yml b/.gitea/workflows/smart-clinic-lint-backend.yml index 1c81566..c644db2 100644 --- a/.gitea/workflows/smart-clinic-lint-backend.yml +++ b/.gitea/workflows/smart-clinic-lint-backend.yml @@ -25,4 +25,4 @@ jobs: run: curl -L -o checkstyle.jar https://github.com/checkstyle/checkstyle/releases/download/checkstyle-10.12.1/checkstyle-10.12.1-all.jar - name: Run Checkstyle run: | - java -jar checkstyle.jar -c /google_checks.xml app/src/main/java/com/project/back_end || true \ No newline at end of file + java -jar checkstyle.jar -c /google_checks.xml SmartClinicManagementSystem/app/src/main/java/com/project/back_end || true \ No newline at end of file diff --git a/.gitea/workflows/smart-clinic-lint-frontend.yml b/.gitea/workflows/smart-clinic-lint-frontend.yml index 74b966f..5deab61 100644 --- a/.gitea/workflows/smart-clinic-lint-frontend.yml +++ b/.gitea/workflows/smart-clinic-lint-frontend.yml @@ -19,8 +19,8 @@ jobs: run: | npm install -g htmlhint stylelint eslint - name: Lint HTML - run: htmlhint SmartClinicManagementSystem/app/src/main/resources/static/assets/pages//*.html || true + run: htmlhint "./SmartClinicManagementSystem/app/src/main/resources/static/assets/pages/*.html" || true - name: Lint CSS - run: stylelint "SmartClinicManagementSystem/app/src/main/resources/static/assets/css//*.css" || true + run: stylelint "./SmartClinicManagementSystem/app/src/main/resources/static/assets/css/*.css" || true - name: Lint JS - run: eslint SmartClinicManagementSystem/app/src/main/resources/static/assets/js//*.js || true \ No newline at end of file + run: eslint "./SmartClinicManagementSystem/app/src/main/resources/static/js/*.js" || true \ No newline at end of file