Correct FieldRegion's zone change to only migrate zone directors for that region #297
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gel | |
on: | |
pull_request: | |
jobs: | |
Clean: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Node Setup & Yarn Install | |
uses: ./.github/actions/setup | |
- name: Gel Setup | |
uses: ./.github/actions/gel-setup | |
- name: Inject Access Policies | |
run: yarn console gel ap inject | |
- name: Schema Migrations In Sync | |
run: gel migration status | |
if: github.event.pull_request.draft == false | |
- name: Validate seed scripts are error free | |
run: yarn gel:seed | |
shell: bash |