Add approvedPrograms
to Partner
object
#1088
Workflow file for this run
This file contains 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: EdgeDB | |
on: | |
pull_request: | |
jobs: | |
Clean: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Node Setup & Yarn Install | |
uses: ./.github/actions/setup | |
- uses: edgedb/setup-edgedb@v1 | |
- name: Generate EdgeDB TS files | |
shell: bash | |
run: yarn edgedb:gen | |
- name: Inject Access Policies | |
run: yarn console edgedb ap inject | |
- name: Schema Migrations In Sync | |
run: edgedb migration status | |
if: github.event.pull_request.draft == false | |
- name: Validate seed scripts are error free | |
run: yarn edgedb:seed | |
shell: bash |