Skip to content

Commit 074e11a

Browse files
ci: Fix build step in pr action (#136)
deps: Update flutter-code-quality to v1.0.6
1 parent cdbd1d1 commit 074e11a

File tree

4 files changed

+24
-6653
lines changed

4 files changed

+24
-6653
lines changed

.github/workflows/code-quality.yml

-20
This file was deleted.

.github/workflows/pull-request.yml

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
name: CI - Pull Request
22
on:
33
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+
410

511
jobs:
612
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+
928
check-secret:
1029
runs-on: ubuntu-latest
1130
outputs:

.gitignore

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

0 commit comments

Comments
 (0)