-
Notifications
You must be signed in to change notification settings - Fork 15
57 lines (48 loc) · 1.36 KB
/
web.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
name: Web CI
on:
pull_request_target:
branches: [main]
jobs:
unit_tests:
runs-on: ubuntu-22.04
environment: recalc-env
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node 18
uses: actions/setup-node@v2
with:
node-version: 18
- run: yarn install
- run: yarn build
env:
VITE_KEYPHRASE: ${{ secrets.VITE_KEYPHRASE }}
- name: Run tests
env:
VITE_KEYPHRASE: ${{ secrets.VITE_KEYPHRASE }}
run: yarn test
deploy_dev:
needs: [unit_tests]
runs-on: ubuntu-22.04
environment: recalc-env
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node 18
uses: actions/setup-node@v2
with:
node-version: 18
- name: "Vercel dev deploy"
uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GH_PAT }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID}}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID}}
github-comment: true