diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-10-29 14:04:28 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-11-03 19:35:16 +0100 |
| commit | e4a1c21749d42fcdf4c6ce89899d62a2501331ff (patch) | |
| tree | 0902644e580cdd522ec69bfa8df8bc32331ccaa5 | |
| parent | cb50c427098cd73b0d4de930d35c5976f2ae919f (diff) | |
Run all CI build pipelines on pull request
| -rw-r--r-- | .github/workflows/build-api.yml (renamed from .github/workflows/api.yml) | 4 | ||||
| -rw-r--r-- | .github/workflows/build-frontend.yml (renamed from .github/workflows/frontend.yml) | 4 | ||||
| -rw-r--r-- | .github/workflows/build-simulator.yml (renamed from .github/workflows/simulator.yml) | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/api.yml b/.github/workflows/build-api.yml index ae67b753..5bbc30c4 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/build-api.yml @@ -1,9 +1,11 @@ -name: REST API +name: Build API on: push: paths: - 'api/**' + pull_request: + branches: [master] defaults: run: diff --git a/.github/workflows/frontend.yml b/.github/workflows/build-frontend.yml index da6f1031..67f356b9 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/build-frontend.yml @@ -1,9 +1,11 @@ -name: Frontend +name: Build Frontend on: push: paths: - 'frontend/**' + pull_request: + branches: [master] defaults: run: diff --git a/.github/workflows/simulator.yml b/.github/workflows/build-simulator.yml index 8174ae3a..8d9356b4 100644 --- a/.github/workflows/simulator.yml +++ b/.github/workflows/build-simulator.yml @@ -1,9 +1,11 @@ -name: Simulator +name: Build Simulator on: push: paths: - 'simulator/**' + pull_request: + branches: [master] defaults: run: |
