Skip to content

Commit a8fd34a

Browse files
committed
ci: Fix build step in pr action
1 parent cdbd1d1 commit a8fd34a

File tree

4 files changed

+6
-6633
lines changed

4 files changed

+6
-6633
lines changed

.github/workflows/code-quality.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ jobs:
1111
with:
1212
repository: ${{github.event.pull_request.head.repo.full_name}}
1313
ref: ${{ github.head_ref }}
14+
fetch-depth: 0
1415
- uses: subosito/flutter-action@v2
1516
with:
1617
cache: true
17-
- run: dart run build_runner build
18-
- uses: ZebraDevs/flutter-code-quality@v1.0.3
18+
- run: dart run build_runner build --delete-conflicting-outputs
19+
- uses: ZebraDevs/flutter-code-quality@UX-1139
1920
with:
2021
token: ${{secrets.GITHUB_TOKEN}}

.github/workflows/pull-request.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI - Pull Request
22
on:
33
pull_request_target:
4+
pull_request: #TODO: Remove this after testing
45

56
jobs:
67
code-quality:

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,5 @@ $RECYCLE.BIN/
146146
.fvmrc
147147
**/node_modules/
148148
package-lock.json
149-
/appium
149+
/appium
150+
/coverage

0 commit comments

Comments
 (0)