Merge pull request #289 from Workiva/release_over_react_codemod_2.32.0 #740
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
name: Dart CI | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'test_consume_*' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [ 2.18.7, 2.19.6 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Print Dart SDK version | |
run: dart --version | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Validate dependencies | |
run: dart run dependency_validator | |
if: always() && steps.install.outcome == 'success' | |
- name: Validate formatting | |
run: dart format --set-exit-if-changed . | |
if: always() && steps.install.outcome == 'success' && matrix.sdk == '2.18.7' | |
- name: Analyze project source | |
run: dart analyze | |
if: always() && steps.install.outcome == 'success' | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [ 2.18.7, 2.19.6 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Print Dart SDK version | |
run: dart --version | |
- id: install | |
name: Install dependencies | |
run: dart pub get --no-precompile | |
- name: Run tests | |
run: | | |
echo 'Running dart pub get in test fixtures beforehand to prevent concurrent `dart pub get`s in tests from failing' | |
(cd test/test_fixtures/over_react_project && dart pub get) | |
dart test --exclude-tags=wsd | |
- name: Create SBOM Release Asset | |
uses: anchore/sbom-action@v0 | |
with: | |
path: ./ | |
format: cyclonedx-json |