Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add name to package.json #18

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
java-version: "17"
distribution: "temurin"
cache: "gradle"
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Cache Android SDK
Expand All @@ -35,7 +35,7 @@ jobs:
uses: ./.github/actions/flutter-setup
- uses: SwiftyLab/setup-swift@latest
with:
swift-version: '5.10.0'
swift-version: "5.10.0"
- name: Get Swift Version
run: swift --version
- name: Get Xcode version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
- name: Attest
uses: actions/attest-build-provenance@v1
with:
subject-path: '${{ github.workspace }}/*.tgz'
subject-path: "${{ github.workspace }}/*.tgz"
2 changes: 1 addition & 1 deletion .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ permissions:
jobs:
semantic_pr-name:
name: semantic_pr-name
uses: evva-sfw/.github/workflows/semantic.yml@main
uses: evva-sfw/.github/workflows/semantic.yml@main
14 changes: 7 additions & 7 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: test-report
on:
workflow_run:
workflows: ['test']
workflows: ["test"]
types:
- completed
permissions:
Expand All @@ -13,9 +13,9 @@ jobs:
test-report_dart:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results.json # artifact name
name: Dart Tests # Name of the check run which will be created
path: './test-results.json' # Path to test results (inside artifact .zip)
reporter: dart-json # Format of test results
- uses: dorny/test-reporter@v1
with:
artifact: test-results.json # artifact name
name: Dart Tests # Name of the check run which will be created
path: "./test-results.json" # Path to test results (inside artifact .zip)
reporter: dart-json # Format of test results
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
java-version: "17"
distribution: "temurin"
cache: "gradle"
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Cache Android SDK
Expand All @@ -42,7 +42,7 @@ jobs:
- run: example/android/gradlew
- name: Run Tests
run: make test-android

test_ios:
runs-on: macos-latest
steps:
Expand All @@ -51,7 +51,7 @@ jobs:
uses: ./.github/actions/flutter-setup
- uses: SwiftyLab/setup-swift@latest
with:
swift-version: '5.10.0'
swift-version: "5.10.0"
- name: Get Swift Version
run: swift --version
- name: Get Xcode version
Expand All @@ -73,4 +73,3 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app
run: make test-ios

Loading
Loading