correct graphql changeset #184
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: Website | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
# we always want new site previews because the api reference changes are in code | |
# paths: | |
# - website/** | |
jobs: | |
check-types: | |
name: Check types | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup and install | |
uses: the-guild-org/shared-config/setup@v1 | |
with: | |
node-version-file: .node-version | |
working-directory: website | |
- name: Check | |
working-directory: website | |
run: yarn check:types | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup | |
uses: the-guild-org/shared-config/setup@v1 | |
with: | |
node-version-file: .node-version | |
- name: Install | |
working-directory: website | |
run: yarn install | |
- name: Generate documentation | |
run: yarn gendocs | |
- name: Deploy | |
uses: the-guild-org/shared-config/website-cf@main | |
env: | |
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/ws' || '' }} | |
SITE_URL: ${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/ws' || '' }} | |
with: | |
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
projectName: graphql-ws | |
prId: ${{ github.event.pull_request.number }} | |
websiteDirectory: website | |
buildScript: yarn build | |
artifactDir: out |