ci: update workflow triggers to include workflow_dispatch for integration and unit tests

This commit is contained in:
Carlos Santos 2025-05-30 11:30:01 +02:00
parent 5884f9341e
commit 5d90602c88
4 changed files with 16 additions and 4 deletions

View File

@ -1,5 +1,8 @@
name: Backend Integration Tests
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
jobs:
test-rooms:

View File

@ -1,5 +1,8 @@
name: Backend Unit Tests
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
jobs:
unit-test:

View File

@ -1,5 +1,8 @@
name: WebComponent E2E Tests
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
jobs:
webcomponent-e2e-test:

View File

@ -1,5 +1,8 @@
name: WebComponent Unit Tests
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:
jobs:
unit-test: