diff --git a/.github/workflows/backend-testing.yml b/.github/workflows/backend-testing.yml index ce7600e0..5a7074d9 100644 --- a/.github/workflows/backend-testing.yml +++ b/.github/workflows/backend-testing.yml @@ -9,13 +9,13 @@ name: Backend Testing # - a draft PR to "dev" with backend js/ts files is marked as ready for review on: push: - branches: [ "dev" ] + branches: [ "dev", "main" ] paths: - 'backend/src/**.[jt]s' - 'backend/tests/**.[jt]s' - 'backend/vitest.config.ts' pull_request: - branches: [ "dev" ] + branches: [ "dev", "main" ] types: ["synchronize", "ready_for_review", "opened", "reopened"] paths: - 'backend/src/**.[jt]s' diff --git a/.github/workflows/frontend-testing.yml b/.github/workflows/frontend-testing.yml index 053e66c3..5554fcff 100644 --- a/.github/workflows/frontend-testing.yml +++ b/.github/workflows/frontend-testing.yml @@ -9,7 +9,7 @@ name: Frontend Testing # - a draft PR to "dev" with frontend js/ts/vue/css files is marked as ready for review on: push: - branches: [ "dev" ] + branches: [ "dev", "main" ] paths: - 'frontend/src/**.[jt]s' - 'frontend/src/**.vue' @@ -20,7 +20,7 @@ on: - 'frontend/vitest.config.ts' - 'frontend/playwright.config.ts' pull_request: - branches: [ "dev" ] + branches: [ "dev", "main" ] types: ["synchronize", "ready_for_review", "opened", "reopened"] paths: - 'frontend/src/**.[jt]s' diff --git a/.github/workflows/lint-action.yml b/.github/workflows/lint-action.yml index 7fd77d28..f7e8d11e 100644 --- a/.github/workflows/lint-action.yml +++ b/.github/workflows/lint-action.yml @@ -4,13 +4,11 @@ on: # Trigger the workflow on push or pull request, # but only for the main branch push: - branches: - - dev + branches: [ "dev", "main" ] # Replace pull_request with pull_request_target if you # plan to use this action with forks, see the Limitations section pull_request: - branches: - - dev + branches: [ "dev", "main" ] types: ["synchronize", "ready_for_review", "opened", "reopened"]