-
Notifications
You must be signed in to change notification settings - Fork 19
83 lines (73 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: CI
on:
push:
branches: [master]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
# Set python version to 2.x due to node-gyp and sass
- uses: actions/setup-python@v4
with:
python-version: "3.10.12"
# Set node version
- uses: actions/setup-node@v2
with:
node-version: "14.21.3"
- name: Set NPM 7
run: npm install -g [email protected]
# Cache node_modules
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install MDNS build dependencies
run: |
sudo apt-get update
sudo apt-get install libavahi-compat-libdnssd-dev
- name: Install node modules
run: npm install
- name: Lint
run: npm run lint -- --max-warnings 0 && npm run sass-lint -- --max-warnings 0
- name: Run tests
run: npm run test
build:
needs: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
# Set python version to 2.x due to node-gyp and sass
- uses: actions/setup-python@v4
with:
python-version: "3.10.12"
# Set node version
- uses: actions/setup-node@v2
with:
node-version: "14.21.3"
- name: Set NPM 7
run: npm install -g [email protected]
# Cache node_modules
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install MDNS build dependencies
run: |
sudo apt-get update
sudo apt-get install libavahi-compat-libdnssd-dev
- name: Install node modules
run: npm install
- name: Build
run: npm run build:electron