|
5 | 5 | VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
6 | 6 |
|
7 | 7 | on:
|
8 |
| - push: |
9 |
| - branches: main |
| 8 | + push: |
| 9 | + branches: main |
10 | 10 |
|
11 | 11 | jobs:
|
12 |
| - build: |
13 |
| - runs-on: ubuntu-latest |
14 |
| - steps: |
15 |
| - # Checkout |
16 |
| - - uses: actions/checkout@v4 |
17 |
| - |
18 |
| - # Run tests |
19 |
| - - name: Get project's node version |
20 |
| - run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) |
21 |
| - id: nvm |
22 |
| - |
23 |
| - - name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }} |
24 |
| - uses: actions/setup-node@v4 |
25 |
| - with: |
26 |
| - node-version: ${{ steps.nvm.outputs.NODE_VERSION }} |
27 |
| - cache: 'npm' |
28 |
| - |
29 |
| - - run: npm ci |
30 |
| - - run: npm test |
31 |
| - |
32 |
| - # Deploy to Vercel |
33 |
| - - name: Install Vercel CLI |
34 |
| - run: npm install --global vercel@latest |
35 |
| - |
36 |
| - - name: Build Project Artifacts |
37 |
| - run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} --yes |
38 |
| - |
39 |
| - - name: Deploy Project Artifacts to Vercel |
40 |
| - run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes |
| 12 | + build: |
| 13 | + runs-on: ubuntu-latest |
| 14 | + steps: |
| 15 | + # Checkout |
| 16 | + - uses: actions/checkout@v4 |
| 17 | + |
| 18 | + # Run tests |
| 19 | + - name: Get project's node version |
| 20 | + run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) |
| 21 | + id: nvm |
| 22 | + |
| 23 | + - name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }} |
| 24 | + uses: actions/setup-node@v4 |
| 25 | + with: |
| 26 | + node-version: ${{ steps.nvm.outputs.NODE_VERSION }} |
| 27 | + cache: 'npm' |
| 28 | + |
| 29 | + - run: npm ci |
| 30 | + - run: npm test |
| 31 | + |
| 32 | + # Deploy to Vercel (production) |
| 33 | + - name: Install Vercel CLI (production) |
| 34 | + if: ${{ !env.ACT }} |
| 35 | + run: npm install --global vercel@latest |
| 36 | + |
| 37 | + - name: Pull Vercel Environment Information (production) |
| 38 | + if: ${{ !env.ACT }} |
| 39 | + run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} |
| 40 | + |
| 41 | + - name: Build Project Artifacts (production) |
| 42 | + if: ${{ !env.ACT }} |
| 43 | + run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} --yes |
| 44 | + |
| 45 | + - name: Deploy Project Artifacts to Vercel (production) |
| 46 | + if: ${{ !env.ACT }} |
| 47 | + run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes |
| 48 | + |
| 49 | + ############################################ |
| 50 | + # It detects if you are running act locally |
| 51 | + # Deploy to Vercel as a preview only |
| 52 | + ############################################ |
| 53 | + - name: Install Vercel CLI (preview mode) |
| 54 | + if: ${{ env.ACT }} |
| 55 | + run: npm install --global vercel@latest |
| 56 | + |
| 57 | + - name: Pull Vercel Environment Information (preview mode) |
| 58 | + if: ${{ env.ACT }} |
| 59 | + run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} |
| 60 | + |
| 61 | + - name: Build Project Artifacts (preview mode) |
| 62 | + if: ${{ env.ACT }} |
| 63 | + run: vercel build --token=${{ secrets.VERCEL_TOKEN }} --yes |
| 64 | + |
| 65 | + - name: Deploy Project Artifacts to Vercel (preview mode) |
| 66 | + if: ${{ env.ACT }} |
| 67 | + run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes |
0 commit comments