Compare commits

...

2 commits

Author SHA1 Message Date
0365d18ff7
fixup! Stop running pull request workflow on main
Some checks failed
Build & Test / Validate (pull_request) Failing after 9s
Build & Test / Run Unit Tests (pull_request) Has been skipped
Build & Test / Run UI Tests (pull_request) Has been skipped
2024-08-23 18:02:54 -06:00
9da4797070
Stop running pull request workflow on main
Instead of running the checks on `main`, I've opted to just rebase the current branch onto `main` as part of the workflow process so that I don't need to run checks twice, which starves CI resources and doubles the minutes I'd run tests on Firebase Test Lab
2024-08-23 18:02:16 -06:00

View file

@ -2,8 +2,6 @@ name: Build & Test
on:
pull_request:
push:
branches: [ main ]
jobs:
validate:
@ -11,6 +9,7 @@ jobs:
name: Validate
steps:
- uses: actions/checkout@v4
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4
with:
@ -25,6 +24,7 @@ jobs:
- validate
steps:
- uses: actions/checkout@v4
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4
with:
@ -50,6 +50,7 @@ jobs:
- validate
steps:
- uses: actions/checkout@v4
- run: git rebase origin/main
- name: set up JDK
uses: https://git.wbrawner.com/actions/setup-java@v4
with: