-
Notifications
You must be signed in to change notification settings - Fork 0
157 lines (134 loc) · 4.49 KB
/
cicd-vercel.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
name: Build & Deploy (Vercel)
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
concurrency:
group: 'workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}'
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
release:
types: [created]
push:
branches: [main]
pull_request:
branches: [main]
jobs:
setup-stage:
timeout-minutes: 1
outputs:
env-name: ${{ steps.env-name.outputs.env }}
runs-on: ubuntu-latest
steps:
- name: Setup environment name
id: env-name
run: |
if [[ ${GITHUB_HEAD_REF} == dev/* || ${GITHUB_HEAD_REF} == renovate/* ]]; then
echo "env=staging" >> $GITHUB_OUTPUT
elif [[ "${{github.event_name}}" == "release" && "${{github.event.action}}" == "created" ]]; then
echo "env=production" >> $GITHUB_OUTPUT
else
echo "env=develop" >> $GITHUB_OUTPUT
fi
lint:
timeout-minutes: 5
name: Lint ✅
needs: [setup-stage]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Check Environment
run: |
echo "Environment: ${{ needs.setup-stage.outputs.env-name }}"
- name: Setup
uses: ./.github/actions/setup-node
- name: Lint App
shell: bash
run: |
pnpm i
pnpm nuxi prepare
pnpm run lint
test:
timeout-minutes: 8
name: Test 🧪
needs: [setup-stage]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Check Environment
run: |
echo "Environment: ${{ needs.setup-stage.outputs.env-name }}"
- name: Setup
uses: ./.github/actions/setup-node
- name: Test App
shell: bash
run: |
pnpm i
pnpm nuxi prepare
pnpm run test
build-deploy:
timeout-minutes: 10
name: Build 🏗️ & Deploy 🚀
needs: [setup-stage, lint, test]
runs-on: ubuntu-latest
outputs:
url: ${{ steps.deploy.outputs.url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Check Environment
run: |
echo "Environment: ${{ needs.setup-stage.outputs.env-name }}"
- name: Setup
uses: ./.github/actions/setup-node
- name: Install Vercel CLI
run: pnpm install --global vercel@latest
- name: Install Deps
run: pnpm install
- name: Pull Vercel Environment Information (Stage)
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
if: contains(fromJson('["staging"]'), needs.setup-stage.outputs.env-name)
- name: Build Project Artifacts (Stage)
run: |
export NITRO_PRESET="vercel"
export NODE_ENV="production"
pnpm run build
vercel build --debug --token=${{ secrets.VERCEL_TOKEN }}
if: contains(fromJson('["staging"]'), needs.setup-stage.outputs.env-name)
- name: Pull Vercel Environment Information (Prod)
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
if: contains(fromJson('["production"]'), needs.setup-stage.outputs.env-name)
- name: Build Project Artifacts (Prod)
run: |
export NITRO_PRESET="vercel"
export NODE_ENV="production"
pnpm run build
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
if: contains(fromJson('["production"]'), needs.setup-stage.outputs.env-name)
- name: Deploy Project Artifacts to Vercel
id: deploy
run: |
if [[ "${{ needs.setup-stage.outputs.env-name }}" == "production" ]]; then
echo "url=$(vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
else
echo "url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
fi
preview:
timeout-minutes: 1
name: Preview 🔎
needs: [setup-stage, lint, test, build-deploy]
runs-on: ubuntu-latest
environment:
name: ${{ needs.setup-stage.outputs.env-name }}
url: ${{ needs.build-deploy.outputs.url }}
steps:
- run: |
echo "Env: ${{ needs.setup-stage.outputs.env-name }}"
echo "Url: ${{ needs.build-deploy.outputs.url }}"