-
Notifications
You must be signed in to change notification settings - Fork 3
101 lines (93 loc) · 3.37 KB
/
preview.yml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Preview
on:
pull_request:
types: [opened, reopened, synchronize, closed]
env:
NODE_VERSION: 20
VERCEL_SCOPE: aboutbits
VERCEL_ORGANIZATION_ID: team_e2WfHoRuw9BQVW7oYmMSKRJ6
VERCEL_PROJECT_ID: prj_PBGTsidF0cEZ6uj5mN2Rev0pulxG
PREVIEW_DOMAIN: react-ui.aboutbits.dev
concurrency:
group: ${{ github.ref }}-preview
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-22.04
timeout-minutes: 10
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Lint
run: npm run lint
shell: bash
- name: Typecheck
run: npm run typecheck
shell: bash
test:
runs-on: ubuntu-22.04
timeout-minutes: 10
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Test
run: npm run test
shell: bash
comment-link:
runs-on: ubuntu-22.04
timeout-minutes: 5
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
steps:
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Preview link: [https://${{ github.event.pull_request.number }}.${{ env.PREVIEW_DOMAIN }}](https://${{ github.event.pull_request.number }}.${{ env.PREVIEW_DOMAIN }})'
})
deploy-preview:
runs-on: ubuntu-22.04
timeout-minutes: 20
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize' }}
needs:
- checks
- test
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ env.NODE_VERSION }}
- id: deploy
uses: aboutbits/github-actions-vercel/deploy@v1
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-organization-id: ${{ env.VERCEL_ORGANIZATION_ID }}
vercel-project-id: ${{ env.VERCEL_PROJECT_ID }}
- uses: aboutbits/github-actions-vercel/link-domain@v1
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-scope: ${{ env.VERCEL_SCOPE }}
deployment-domain: ${{ steps.deploy.outputs.url }}
preview-domain: ${{ github.event.pull_request.number }}.${{ env.PREVIEW_DOMAIN }}
unlink-domain:
runs-on: ubuntu-22.04
timeout-minutes: 10
if: ${{ github.event.action == 'closed' }}
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ env.NODE_VERSION }}
- uses: aboutbits/github-actions-vercel/unlink-domain@v1
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-scope: ${{ env.VERCEL_SCOPE }}
preview-domain: ${{ github.event.pull_request.number }}.${{ env.PREVIEW_DOMAIN }}