Update partner API schema with org quota and bucket regions details #819
Workflow file for this run
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: test | |
| on: | |
| - pull_request | |
| env: | |
| NEXT_ALGOLIA_APPID: dummy_for_testing | |
| NEXT_ALGOLIA_APIKEY: dummy_for_testing | |
| NEXT_PUBLIC_POSTHOG_APIKEY: dummy_for_testing | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| - name: Check types + linting + build | |
| run: | | |
| npm install | |
| npm run lint | |
| npm run build:apidocs # ensure the api docs generate without errors | |
| npm run build |