-
Notifications
You must be signed in to change notification settings - Fork 91
190 lines (164 loc) · 4.78 KB
/
deploy.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
name: release
on:
push:
branches: next
tags: 'v*'
pull_request:
branches: next
jobs:
install:
name: Cache node_modules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Cache Cypress binary
id: cache-cypress-binary
uses: actions/cache@v2
with:
path: ~/.cache/Cypress
key: cypress-${{ runner.os }}-cache-${{ hashFiles('**/yarn.lock') }}
- name: Install
env:
# make sure every Cypress install prints minimal information
CI: 1
if: |
steps.cache-node-modules.outputs.cache-hit != 'true' ||
steps.cache-cypress-binary.outputs.cache-hit != 'true'
run: |
corepack enable
yarn workspaces foreach install
# cypress-run:
# name: Cypress run
# runs-on: ubuntu-latest
# needs: install
# steps:
# - uses: actions/checkout@v2
# - name: Load node_modules
# uses: actions/cache@v2
# with:
# path: |
# node_modules
# */*/node_modules
# key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
# - name: Cache Cypress binary
# id: cache-cypress-binary
# uses: actions/cache@v2
# with:
# path: ~/.cache/Cypress
# key: cypress-${{ runner.os }}-cache-${{ hashFiles('**/yarn.lock') }}
# - name: Install dependencies
# if: steps.cache-cypress-binary.outputs.cache-hit != 'true'
# run: |
# yarn install --frozen-lockfile
# npx cypress install
# - name: Verify Cypress
# run: |
# npx cypress cache path
# npx cypress cache list
# npx cypress verify
# - name: Start server in the background
# run: yarn dev:web &
# - name: Cypress tests
# uses: cypress-io/github-action@v2
# env:
# CYPRESS_ACTION: true
# with:
# install: false
# start: yarn dev:api
# command: yarn test:run
# - name: Compress and upload the test result folder
# if: always()
# env:
# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
# run: |
# tar -zcvf ./tests/e2e/video.tar.gz ./tests/e2e/video
# ./script/deploy.sh $ACCESS_TOKEN github.com/hq001/test_video.git tests/e2e
lint:
name: Lint code
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Load node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
corepack enable
yarn workspaces foreach install
- name: Lint
run: |
corepack enable
yarn lint
build-electron:
name: Deploy Radishes
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
needs: install
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@v1
with:
node-version: 16
# - name: Load node_modules
# id: cache-node-modules
# uses: actions/cache@v2
# with:
# path: |
# node_modules
# */*/node_modules
# key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
# if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
corepack enable
yarn workspaces foreach install
- name: Build electron win
if: matrix.os == 'windows-latest'
run: |
corepack enable
yarn pkg:win
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build electron linux
if: matrix.os == 'ubuntu-latest'
run: |
corepack enable
yarn pkg:linux
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build electron macos
if: matrix.os == 'macos-latest'
run: |
corepack enable
yarn pkg:macos
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Releases to github
run: |
echo 'Waiting for scripting'