4
4
push :
5
5
branches :
6
6
- ' master'
7
- - ' renovate/*'
8
7
- ' release/*'
9
8
- ' ci/*'
10
9
pull_request :
11
- branches :
12
- - ' *'
13
- - ' !translations'
14
- - ' !renovate/*'
15
- - ' !release/*'
16
- - ' !ci/*'
17
- types : [assigned, opened, synchronize, reopened]
18
10
19
11
jobs :
20
12
test :
21
13
name : Run tests on ${{ matrix.os }}
22
14
runs-on : ${{ matrix.os }}
23
- if : contains(github.event.head_commit.message, 'ci skip') == false
15
+ # Run always on push, or on pull requests that are not from release or ci branches. This prevents duplaicate runs.
16
+ if : github.event_name == 'push' || (startsWith(github.head_ref, 'release/') == false && startsWith(github.head_ref, 'ci/') == false)
24
17
25
18
strategy :
26
19
matrix :
27
20
node_version : [20.x]
28
21
os : [ubuntu-latest, windows-latest, macOS-latest]
29
22
30
23
steps :
31
- - name : set git config
32
- run : |
33
- git config --global core.eol lf
34
- git config --global core.autocrlf false
35
-
36
24
- name : ubuntu file watcher tweak
37
25
if : matrix.os == 'ubuntu-latest'
38
26
run : echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
46
34
cache : yarn
47
35
48
36
- name : install dependencies
49
- run : yarn
37
+ run : yarn install --frozen-lockfile --network-timeout 1000000
50
38
51
39
- name : lint code
52
40
run : yarn lint
@@ -57,13 +45,16 @@ jobs:
57
45
- name : unit tests
58
46
run : yarn test:ci
59
47
48
+ - name : build check
49
+ run : yarn build
50
+
60
51
- name : coverage
61
52
uses : codecov/codecov-action@v4
62
53
env :
63
54
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
64
55
65
56
- name : electron build
66
57
run : yarn package:ci
67
- if : startsWith(github.ref , 'refs/heads/ release/')
58
+ if : startsWith(github.ref_name , 'release/')
68
59
env :
69
60
GH_TOKEN : ${{ secrets.GH_TOKEN }}
0 commit comments