-
Notifications
You must be signed in to change notification settings - Fork 1
92 lines (91 loc) · 2.99 KB
/
build.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Building (Pull Request)
on: [pull_request, workflow_dispatch]
jobs:
build-frontpage:
name: Build Frontpage
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: Install Turbo
run: yarn global add [email protected]
- name: Set Up Environment
run: mv apps/dicty-frontpage/.env.development apps/dicty-frontpage/.env.production
- name: Prune Application
run: turbo prune --scope=dicty-frontpage
- name: Open Output Directory
run: cd out
- name: Install Dependencies
run: yarn install --ignore-engines
- name: Build Application
run: yarn turbo run build --filter=dicty-frontpage
build-stock-center:
name: Build Stock Center
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: Install Turbo
run: yarn global add [email protected]
- name: Set Up Environment
run: mv apps/stock-center/.env.development apps/stock-center/.env.production
- name: Prune Application
run: turbo prune --scope=stock-center
- name: Open Output Directory
run: cd out
- name: Install Dependencies
run: yarn install --ignore-engines
- name: Build Application
run: yarn turbo run build --filter=stock-center
build-genomepage:
name: Build Genome Page
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: Install Turbo
run: yarn global add [email protected]
- name: Set Up Environment
run: mv apps/genome-page/.env.development apps/genome-page/.env.production
- name: Prune Application
run: turbo prune --scope=genomepage
- name: Open Output Directory
run: cd out
- name: Install Dependencies
run: yarn install --ignore-engines
- name: Build Application
run: yarn turbo run build --filter=genomepage
build-publication:
name: Build Publication
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Check out Code
uses: actions/checkout@v4
- name: Install Turbo
run: yarn global add [email protected]
- name: Set Up Environment
run: mv apps/publication/.env.development apps/publication/.env.production
- name: Prune Application
run: turbo prune --scope=publication
- name: Open Output Directory
run: cd out
- name: Install Dependencies
run: yarn install --ignore-engines
- name: Build Application
run: yarn turbo run build --filter=publication