mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 08:55:37 +08:00
ci: build fe/be if packages changed (@fehmer) (#5674)
* ci: build fe/be if packages changed (@fehmer) Changes in the contracts should trigger be/fe builds * trigger * trigger
This commit is contained in:
parent
033d43d87a
commit
df8d799781
1 changed files with 2 additions and 2 deletions
4
.github/workflows/monkey-ci.yml
vendored
4
.github/workflows/monkey-ci.yml
vendored
|
@ -147,7 +147,7 @@ jobs:
|
|||
name: ci-be
|
||||
needs: [pre-ci, prime-cache, check-pretty]
|
||||
runs-on: ubuntu-latest
|
||||
if: needs.pre-ci.outputs.should-build-be == 'true'
|
||||
if: needs.pre-ci.outputs.should-build-be == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Node.js
|
||||
|
@ -184,7 +184,7 @@ jobs:
|
|||
name: ci-fe
|
||||
needs: [pre-ci, prime-cache, check-pretty]
|
||||
runs-on: ubuntu-latest
|
||||
if: needs.pre-ci.outputs.should-build-fe == 'true'
|
||||
if: needs.pre-ci.outputs.should-build-fe == 'true' || needs.pre-ci.outputs.should-build-pkg == 'true'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Node.js
|
||||
|
|
Loading…
Reference in a new issue