This repository was archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (42 loc) · 1.29 KB
/
preview.yml
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
name: Preview
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on: workflow_dispatch
# push:
# branches-ignore:
# - main
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable && corepack install
- uses: actions/setup-node@v3
with:
node-version: 21
cache: 'yarn'
- run: yarn install --immutable
- run: yarn test
env:
MONGODB_URI_TESTS: ${{ secrets.MONGODB_URI_TESTS }}
Deploy:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- name: Enable corepack
run: corepack enable && corepack install
- uses: actions/setup-node@v3
with:
node-version: 21
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Pull Vercel Environment Information
run: yarn vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: yarn vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: yarn vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}