|
1 |
| -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node |
2 |
| -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs |
3 |
| - |
4 | 1 | name: Resume NextJs CI
|
5 | 2 |
|
| 3 | +env: |
| 4 | + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} |
| 5 | + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} |
| 6 | + |
6 | 7 | on:
|
7 |
| - push: |
8 |
| - branches: main |
| 8 | + push: |
| 9 | + branches: main |
9 | 10 |
|
10 | 11 | jobs:
|
11 |
| - build: |
12 |
| - runs-on: ubuntu-latest |
13 |
| - steps: |
14 |
| - # Checkout |
15 |
| - - uses: actions/checkout@v4 |
16 |
| - |
17 |
| - # Run tests |
18 |
| - - name: Get project's node version |
19 |
| - run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) |
20 |
| - id: nvm |
21 |
| - |
22 |
| - - name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }} |
23 |
| - uses: actions/setup-node@v4 |
24 |
| - with: |
25 |
| - node-version: ${{ steps.nvm.outputs.NODE_VERSION }} |
26 |
| - cache: 'npm' |
27 |
| - |
28 |
| - - run: npm ci |
29 |
| - - run: npm test |
30 |
| - |
31 |
| - # Deploy to GCP |
32 |
| - - name: Google Cloud Auth |
33 |
| - uses: 'google-github-actions/auth@v2' |
34 |
| - with: |
35 |
| - credentials_json: '${{ secrets.GCP_SA_KEY }}' |
36 |
| - project_id: ${{ secrets.GCP_PROJECT_ID }} |
37 |
| - |
38 |
| - - name: Set up Cloud SDK |
39 |
| - uses: 'google-github-actions/setup-gcloud@v2' |
40 |
| - |
41 |
| - - name: Configure Docker |
42 |
| - run: gcloud auth configure-docker gcr.io |
43 |
| - |
44 |
| - - name: Build and Push Docker Image |
45 |
| - run: | |
46 |
| - docker build -t gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest . |
47 |
| - docker push gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest |
48 |
| -
|
49 |
| - - name: Deploy to Cloud Run |
50 |
| - run: | |
51 |
| - gcloud run deploy ${{ secrets.SERVICE_NAME }} \ |
52 |
| - --image gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest \ |
53 |
| - --platform managed \ |
54 |
| - --region ${{ secrets.GCP_REGION }} \ |
55 |
| - --allow-unauthenticated |
| 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 |
0 commit comments