diff --git a/.gitea/workflows/ci-pipeline.yml b/.gitea/workflows/ci-pipeline.yml index 556f74911..d6612c5c4 100755 --- a/.gitea/workflows/ci-pipeline.yml +++ b/.gitea/workflows/ci-pipeline.yml @@ -24,7 +24,7 @@ concurrency: jobs: check-frontend-only: name: Check if frontend-only change - runs-on: ci-check + runs-on: ci-l2 if: github.event_name == 'pull_request' outputs: skip_backend: ${{ steps.check.outputs.skip_backend }} @@ -68,7 +68,7 @@ jobs: needs: check-frontend-only if: always() && needs.check-frontend-only.outputs.skip_backend != 'true' name: Validate Code Quality And Tests - runs-on: ci-check + runs-on: ci-l2 timeout-minutes: 10 permissions: contents: write @@ -232,7 +232,7 @@ jobs: frontend-lint: name: Frontend Lint - runs-on: ci-check + runs-on: ci-l2 timeout-minutes: 10 steps: - name: Checkout code @@ -275,7 +275,7 @@ jobs: frontend-unit-test: name: Frontend Unit Tests - runs-on: ci-check + runs-on: ci-l2 timeout-minutes: 15 needs: check-frontend-only if: always() && needs.check-frontend-only.outputs.skip_frontend != 'true'