We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafab15 commit 00137a2Copy full SHA for 00137a2
.github/workflows/cd.yml
@@ -8,8 +8,26 @@ jobs:
8
# Step 1: Checkout Pull Request Code
9
- name: Checkout Pull Request Code
10
uses: actions/checkout@v3
11
+ with:
12
+ ref: main
13
+
14
+ # Step 2: Install Node.js
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v3
17
18
+ node-version: 20.x
19
20
+ # Step 3: Install Dependencies
21
+ - name: Install Dependencies
22
+ run: |
23
+ npm install
24
25
+ # Step 4: Build App
26
+ - name: Build App
27
28
+ npm run build
29
- # Step 2: Deploy to Production
30
+ # Step 5: Deploy to Production
31
- name: Deploy to Vercel
32
uses: amondnet/vercel-action@v25
33
with:
0 commit comments