chore: bump globals from 17.9.0 to 17.11.0 in /site (#487) #1317
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| verify-dart: | |
| uses: ./.github/workflows/dart_package.yml | |
| with: | |
| setup: dart --version | |
| platform: "vm,chrome" | |
| working_directory: examples/dart_package | |
| verify-flutter: | |
| uses: ./.github/workflows/flutter_package.yml | |
| with: | |
| flutter_channel: stable | |
| flutter_version: "3.44.x" | |
| setup: flutter doctor --verbose | |
| working_directory: examples/flutter_package | |
| # Guards against shell-portability regressions in flutter_package.yml, | |
| # where Windows runners default to pwsh instead of bash. | |
| verify-flutter-windows: | |
| uses: ./.github/workflows/flutter_package.yml | |
| with: | |
| flutter_channel: stable | |
| flutter_version: "3.44.x" | |
| runs_on: windows-latest | |
| run_bloc_lint: false | |
| dart_define: "FLAVOR=staging API_URL=https://example.com" | |
| working_directory: examples/flutter_package | |
| verify-pana-dart: | |
| uses: ./.github/workflows/pana.yml | |
| with: | |
| pana_version: 0.22.24 | |
| min_score: 95 | |
| working_directory: examples/dart_package | |
| verify-pana-flutter: | |
| uses: ./.github/workflows/pana.yml | |
| with: | |
| pana_version: 0.22.24 | |
| min_score: 95 | |
| working_directory: examples/flutter_package | |
| verify-semantic-pull-request: | |
| uses: ./.github/workflows/semantic_pull_request.yml | |
| with: | |
| scopes: "dart_package, deps, flutter_package, pana, semantic_pull_request, spell_check" | |
| verify-spell-check: | |
| uses: ./.github/workflows/spell_check.yml | |
| with: | |
| modified_files_only: false | |
| verify-license-check: | |
| uses: ./.github/workflows/license_check.yml | |
| with: | |
| working_directory: examples/dart_package | |
| dependency_type: "direct-dev" | |
| allowed: "" | |
| forbidden: "unknown" | |
| skip_packages: "very_good_analysis" | |
| verify-license-check-flutter: | |
| uses: ./.github/workflows/license_check.yml | |
| with: | |
| working_directory: examples/flutter_package | |
| flutter_channel: stable | |
| flutter_version: "3.44.x" | |
| dependency_type: "direct-dev" | |
| allowed: "" | |
| forbidden: "unknown" | |
| skip_packages: "very_good_analysis" | |
| build: | |
| needs: | |
| [ | |
| verify-dart, | |
| verify-flutter, | |
| verify-flutter-windows, | |
| verify-pana-dart, | |
| verify-pana-flutter, | |
| verify-semantic-pull-request, | |
| verify-spell-check, | |
| verify-license-check, | |
| verify-license-check-flutter, | |
| ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: noop | |
| run: echo 'noop' |