Skip to content

Commit 8e83ba7

Browse files
committed
ci: prevent duplicate CI runs for PRs
1 parent eede54a commit 8e83ba7

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

.github/workflows/main.yml

+7-16
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,23 @@ on:
44
push:
55
branches:
66
- 'master'
7-
- 'renovate/*'
87
- 'release/*'
98
- 'ci/*'
109
pull_request:
11-
branches:
12-
- '*'
13-
- '!translations'
14-
- '!renovate/*'
15-
- '!release/*'
16-
- '!ci/*'
17-
types: [assigned, opened, synchronize, reopened]
1810

1911
jobs:
2012
test:
2113
name: Run tests on ${{ matrix.os }}
2214
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)
2417

2518
strategy:
2619
matrix:
2720
node_version: [20.x]
2821
os: [ubuntu-latest, windows-latest, macOS-latest]
2922

3023
steps:
31-
- name: set git config
32-
run: |
33-
git config --global core.eol lf
34-
git config --global core.autocrlf false
35-
3624
- name: ubuntu file watcher tweak
3725
if: matrix.os == 'ubuntu-latest'
3826
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
@@ -46,7 +34,7 @@ jobs:
4634
cache: yarn
4735

4836
- name: install dependencies
49-
run: yarn
37+
run: yarn install --frozen-lockfile --network-timeout 1000000
5038

5139
- name: lint code
5240
run: yarn lint
@@ -57,13 +45,16 @@ jobs:
5745
- name: unit tests
5846
run: yarn test:ci
5947

48+
- name: build check
49+
run: yarn build
50+
6051
- name: coverage
6152
uses: codecov/codecov-action@v4
6253
env:
6354
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6455

6556
- name: electron build
6657
run: yarn package:ci
67-
if: startsWith(github.ref, 'refs/heads/release/')
58+
if: startsWith(github.ref_name, 'release/')
6859
env:
6960
GH_TOKEN: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)