File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,15 @@ name: Test
3
3
on :
4
4
push :
5
5
branches :
6
- - " **"
6
+ - " *"
7
+ pull_request :
7
8
8
9
jobs :
9
10
build :
10
11
runs-on : ubuntu-latest
12
+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
11
13
steps :
12
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v5
13
15
- uses : dart-lang/setup-dart@v1
14
16
15
17
- name : Install Melos
29
31
30
32
test :
31
33
runs-on : ubuntu-latest
34
+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
32
35
strategy :
33
36
fail-fast : false
34
37
matrix :
49
52
sqlite_url : " https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
50
53
dart_sdk : stable
51
54
steps :
52
- - uses : actions/checkout@v3
55
+ - uses : actions/checkout@v5
53
56
- uses : dart-lang/setup-dart@v1
54
57
with :
55
58
sdk : ${{ matrix.dart_sdk }}
You can’t perform that action at this time.
0 commit comments