FED-3528 React 18 dual support #515
Workflow file for this run
This file contains hidden or 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: | |
| sdk: [ 2.19.6 ] | |
| react: [ 17, 18 ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: ${{ matrix.sdk }} | |
| - name: Switch to React 17 Test HTML | |
| if: ${{ matrix.react == 17 }} | |
| run: | | |
| mv test/unit/unit_test_template.html test/unit/unit_test_template-old.html | |
| mv test/templates/unit_test_template-react17.html test/templates/unit_test_template.html | |
| - id: install | |
| name: Install dependencies | |
| run: dart pub get | |
| timeout-minutes: 2 | |
| - name: Check formatting | |
| run: dart format . -l 120 --set-exit-if-changed | |
| if: ${{ always() && steps.install.outcome == 'success' }} | |
| - name: Analyze project source | |
| run: dart analyze | |
| if: ${{ always() && steps.install.outcome == 'success' }} | |
| - name: Run tests (DDC) | |
| run: | | |
| dart run build_runner test -- -P concurrent-tests --preset=react${{ matrix.react }} | |
| dart run build_runner test -- -P non-concurrent-tests --preset=react${{ matrix.react }} | |
| timeout-minutes: 10 | |
| if: ${{ always() && steps.install.outcome == 'success' }} | |
| - name: Run tests (dart2js) | |
| run: | | |
| dart run build_runner test -r -- -P concurrent-tests --preset=react${{ matrix.react }} | |
| dart run build_runner test -r -- -P non-concurrent-tests --preset=react${{ matrix.react }} | |
| timeout-minutes: 10 | |
| if: ${{ always() && steps.install.outcome == 'success' }} | |
| - uses: anchore/sbom-action@v0 | |
| with: | |
| path: ./ | |
| format: cyclonedx-json |