forked from ardatan/graphql-mesh
-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (60 loc) · 2.13 KB
/
website.yml
File metadata and controls
70 lines (60 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: website
on:
push:
branches:
- master
pull_request:
env:
YARN_ENABLE_HARDENED_MODE: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deployment:
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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
with:
fetch-depth: 0
- uses: the-guild-org/shared-config/setup@v1
name: set up env
with:
# node-version-file: .node-version
# Website build fails on Node.js 22.7.0, use `node-version-file` later
node-version: 22.6.0
- name: install browsers
run: npx playwright install
- name: run website e2e tests before deploy for PRs
run: npm run test:website -- --fail-on-flaky-tests
if: ${{ github.ref != 'refs/heads/master' }}
- uses: the-guild-org/shared-config/website-cf@v1
name: build and deploy website
env:
NEXT_BASE_PATH: ${{ github.ref == 'refs/heads/master' && '/graphql/mesh' || '' }}
SITE_URL:
${{ github.ref == 'refs/heads/master' && 'https://the-guild.dev/graphql/mesh' || '' }}
with:
cloudflareAccountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
cloudflareApiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: graphql-mesh
prId: ${{ github.event.pull_request.number }}
websiteDirectory: ./
buildScript: yarn build:website
artifactDir: website/out
- name: run website e2e tests on master against prod
run: npm run test:website
if: ${{ github.ref == 'refs/heads/master' }}
env:
AGAINST_PROD: '1'
- name: upload playwright report
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
if: ${{ !cancelled() }}
with:
name: playwright-report
path: website/playwright/report/
retention-days: 14