-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Fix build step in pr action (#136)
deps: Update flutter-code-quality to v1.0.6
- Loading branch information
1 parent
cdbd1d1
commit 074e11a
Showing
4 changed files
with
24 additions
and
6,653 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,30 @@ | ||
name: CI - Pull Request | ||
on: | ||
pull_request_target: | ||
|
||
# Pull Request Runs on the same branch will be cancelled | ||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
jobs: | ||
code-quality: | ||
uses: ./.github/workflows/code-quality.yml | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: 0 | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
cache: true | ||
- run: dart run build_runner build --delete-conflicting-outputs | ||
- uses: ZebraDevs/[email protected] | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
|
||
check-secret: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,4 +146,6 @@ $RECYCLE.BIN/ | |
.fvmrc | ||
**/node_modules/ | ||
package-lock.json | ||
/appium | ||
/appium | ||
/coverage | ||
/.coverage |
Oops, something went wrong.