-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from Workiva/batch/raise_min_dart_sdk_2_19/ov…
…er_react_test raise_min_dart_sdk_2_19
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.18.7, 2.19.6 ] | ||
sdk: [ 2.19.6 ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/[email protected] | ||
|
@@ -34,7 +34,7 @@ jobs: | |
if: always() && steps.install.outcome == 'success' | ||
|
||
- name: Analyze project source | ||
run: if [ ${{ matrix.sdk }} = '2.7.2' ]; then dart pub global activate tuneup && tuneup check --ignore-infos; else dart analyze; fi | ||
run: dart analyze | ||
if: always() && steps.install.outcome == 'success' | ||
|
||
- uses: anchore/sbom-action@v0 | ||
|
@@ -51,7 +51,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.18.7, 2.19.6 ] | ||
sdk: [ 2.19.6 ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/[email protected] | ||
|
@@ -70,7 +70,7 @@ jobs: | |
if: always() && steps.install.outcome == 'success' | ||
|
||
- name: Upload Unit Test Results | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
if: ${{ steps.install.outcome == 'success' && (success() || failure()) }} # run this step even if previous step failed, but not if it was skipped | ||
with: | ||
name: ddc-test-results@${{ matrix.sdk }} | ||
|
@@ -85,7 +85,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.18.7, 2.19.6 ] | ||
sdk: [ 2.19.6 ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/[email protected] | ||
|
@@ -104,7 +104,7 @@ jobs: | |
if: always() && steps.install.outcome == 'success' | ||
|
||
- name: Upload Unit Test Results | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
if: ${{ steps.install.outcome == 'success' && (success() || failure()) }} # run this step even if previous step failed, but not if it was skipped | ||
with: | ||
name: dart2js-test-results@${{ matrix.sdk }} | ||
|
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