Merge pull request #401 from Workiva/release_react-dart_7.1.2 #313
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: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Can't run on `stable` (Dart 3) until we're fully null-safe. | |
sdk: [2.19.6] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/setup-dart@v1 | |
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: Verify formatting | |
run: dart run dart_dev format --check | |
if: ${{ matrix.sdk == '2.19.6' }} | |
- name: Analyze project source | |
run: dart analyze | |
if: always() && steps.install.outcome == 'success' | |
- name: Run tests (DDC) | |
run: | | |
dart run build_runner test --delete-conflicting-outputs -- --preset dartdevc | |
if: always() && steps.install.outcome == 'success' | |
timeout-minutes: 5 | |
- name: Run tests (dart2js) | |
run: | | |
dart run build_runner test --delete-conflicting-outputs --release -- --preset dart2js | |
if: always() && steps.install.outcome == 'success' | |
timeout-minutes: 5 | |
- uses: anchore/sbom-action@v0 | |
with: | |
path: ./ | |
format: cyclonedx-json |