-
Notifications
You must be signed in to change notification settings - Fork 3
154 lines (130 loc) · 4.7 KB
/
build-lint-test.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
name: Build, lint and test
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main, release**]
pull_request:
branches: [main, release**]
# Allows us to run the workflow manually from the Actions tab
workflow_dispatch:
jobs:
dependencies:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Cache dependencies
id: fetch-dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
**/dll
**/pkg
**/target
key: ${{ runner.os }}-v3-${{ hashFiles('**/yarn.lock', '**/rust-src/') }}
- name: Install rust
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
run: |
rustup default 1.53
- name: Get linux packages
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev libusb-1.0-0-dev rpm
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: actions/setup-node@v2
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
with:
node-version: '16.20.2'
- name: Download dependencies
if: steps.fetch-dependencies.outputs.cache-hit != 'true'
run: yarn
build:
runs-on: ubuntu-20.04
needs: [dependencies]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-node@v2
with:
node-version: '16.20.2'
- name: Get cached dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
**/dll
**/pkg
**/target
key: ${{ runner.os }}-v3-${{ hashFiles('**/yarn.lock', '**/rust-src/') }}
- name: Build
run: yarn build-ci
- name: Save build artifacts in cache
uses: actions/cache@v2
with:
path: |
**/app/proto
**/app/main.prod.js
**/app/dist
key: ${{ runner.os }}-v3-${{ hashFiles('**/app/proto/', '**/app/main.prod.js', '**/app/dist/') }}
lint:
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-node@v2
with:
node-version: '16.20.2'
- name: Get cached dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
**/dll
**/pkg
**/target
key: ${{ runner.os }}-v3-${{ hashFiles('**/yarn.lock', '**/rust-src/') }}
- name: Get build cache
uses: actions/cache@v2
with:
path: |
**/app/proto
**/app/main.prod.js
**/app/dist
key: ${{ runner.os }}-v3-${{ hashFiles('**/app/proto/', '**/app/main.prod.js', '**/app/dist/') }}
- name: Lint
run: yarn lint
test:
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-node@v2
with:
node-version: '16.20.2'
- name: Get cached dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
**/dll
**/pkg
**/target
key: ${{ runner.os }}-v3-${{ hashFiles('**/yarn.lock', '**/rust-src/') }}
- name: Get build cache
uses: actions/cache@v2
with:
path: |
**/app/proto
**/app/main.prod.js
**/app/dist
key: ${{ runner.os }}-v3-${{ hashFiles('**/app/proto/', '**/app/main.prod.js', '**/app/dist/') }}
- name: Test
run: yarn test