File tree 4 files changed +24
-6653
lines changed
4 files changed +24
-6653
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : CI - Pull Request
2
2
on :
3
3
pull_request_target :
4
+
5
+ # Pull Request Runs on the same branch will be cancelled
6
+ concurrency :
7
+ group : ${{ github.head_ref }}
8
+ cancel-in-progress : true
9
+
4
10
5
11
jobs :
6
12
code-quality :
7
- uses : ./.github/workflows/code-quality.yml
8
-
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ with :
17
+ repository : ${{github.event.pull_request.head.repo.full_name}}
18
+ ref : ${{ github.head_ref }}
19
+ fetch-depth : 0
20
+ - uses : subosito/flutter-action@v2
21
+ with :
22
+ cache : true
23
+ - run : dart run build_runner build --delete-conflicting-outputs
24
+ -
uses :
ZebraDevs/[email protected]
25
+ with :
26
+ token : ${{secrets.GITHUB_TOKEN}}
27
+
9
28
check-secret :
10
29
runs-on : ubuntu-latest
11
30
outputs :
Original file line number Diff line number Diff line change @@ -146,4 +146,6 @@ $RECYCLE.BIN/
146
146
.fvmrc
147
147
** /node_modules /
148
148
package-lock.json
149
- /appium
149
+ /appium
150
+ /coverage
151
+ /.coverage
You can’t perform that action at this time.
0 commit comments