Benchmark Hive Router Query Planner in Hive Gateway #144
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: website | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deployment: | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - uses: the-guild-org/shared-config/setup@v1 | |
| name: set up env | |
| with: | |
| node-version-file: .node-version | |
| - uses: the-guild-org/shared-config/website-cf@v1 | |
| name: build and deploy website | |
| env: | |
| NEXT_BASE_PATH: ${{ github.event.pull_request.number && '/' || '/graphql/hive/federation-gateway-performance/' }} | |
| SITE_URL: | |
| ${{ github.event.pull_request.number && '' || 'https://the-guild.dev/graphql/hive/federation-gateway-performance' }} | |
| with: | |
| cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| projectName: federation-gateway-benchmark | |
| prId: ${{ github.event.pull_request.number }} | |
| websiteDirectory: website | |
| buildScript: npm run build | |
| artifactDir: dist |