diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 0030ec4..785ba96 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -60,11 +60,6 @@ jobs: CLONE_URL_WITH_AUTH=$(echo "$CLONE_URL" | sed "s#https://#https://$ALL_REPO_TOKEN@#") git clone --quiet "$CLONE_URL_WITH_AUTH" . echo "${{ gitea.repository }} cloned successfully." - - #Check frontend linting - - name: Check frontend linting - working-directory: ./frontend - run: yarn lint # Install frontend dependencies and run tests - name: Install frontend dependencies and run tests @@ -79,7 +74,12 @@ jobs: frontend-${{ runner.os }}-yarn- run: | yarn install --frozen-lockfile - yarn test --watchAll=false --ci + #yarn test --watchAll=false --ci + + #Check frontend linting + - name: Check frontend linting + working-directory: ./frontend + run: yarn lint backend-jobs: name: Set up Java for Backend Tests and Build