-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (55 loc) · 1.42 KB
/
main.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
58
59
60
61
name: Main
on:
push:
branches:
- main
env:
NODE_VERSION: 16
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: aboutbits/github-actions-node/setup-and-install@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Lint
run: npm run lint
shell: bash
- name: Typecheck
run: npm run typecheck
shell: bash
test:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: aboutbits/github-actions-node/setup-and-install@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: Test
run: npm run test
shell: bash
deploy-main:
runs-on: ubuntu-22.04
timeout-minutes: 20
if: github.ref == 'refs/heads/main'
needs:
- checks
- test
steps:
- uses: actions/checkout@v3
- uses: aboutbits/github-actions-node/setup-and-install@v1
with:
node-version: ${{ env.NODE_VERSION }}
- uses: aboutbits/github-actions-vercel/deploy@v1
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-organization-id: team_e2WfHoRuw9BQVW7oYmMSKRJ6
vercel-project-id: prj_PBGTsidF0cEZ6uj5mN2Rev0pulxG
build-arguments: --prod
deploy-arguments: --prod