chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /site (#1432) #2123
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: e2e | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/e2e.yaml" | |
| - "**" | |
| - "lib/**" | |
| - "test/**" | |
| - "pubspec.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/e2e.yaml" | |
| - "**" | |
| - "lib/**" | |
| - "test/**" | |
| - "pubspec.yaml" | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| test: | |
| # E2E tests for the test command | |
| - test/commands/test/async_main/async_main_test.dart | |
| - test/commands/test/compilation_error/compilation_error_test.dart | |
| - test/commands/test/no_project/no_project_test.dart | |
| - test/commands/test/spaced_golden_file_name/spaced_golden_file_name_test.dart | |
| # E2E tests for the create command | |
| - test/commands/create/flutter_app/core_test.dart | |
| - test/commands/create/dart_cli/dart_cli_test.dart | |
| - test/commands/create/dart_package/dart_pkg_test.dart | |
| - test/commands/create/docs_site/docs_site_test.dart | |
| - test/commands/create/flame_game/flame_game_test.dart | |
| - test/commands/create/flutter_package/flutter_pkg_test.dart | |
| - test/commands/create/flutter_plugin/flutter_plugin_test.dart | |
| # E2E tests for the `packages check licenses` command | |
| - test/commands/packages/check/licenses/licenses_allowed_test.dart | |
| - test/commands/packages/check/licenses/licenses_forbidden_test.dart | |
| - test/commands/packages/check/licenses/unknown_licenses_test.dart | |
| steps: | |
| - name: 📚 Git Checkout | |
| uses: actions/checkout@v6 | |
| - name: 🐦 Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.38.x" | |
| - name: Install LCOV | |
| run: sudo apt-get install -y lcov | |
| - name: 📦 Install Dependencies (root) | |
| run: dart pub get | |
| - name: 📦 Install Dependencies (e2e) | |
| working-directory: e2e | |
| run: dart pub get | |
| - name: 🧪 Run Tests (e2e) | |
| working-directory: e2e | |
| run: dart test ${{ matrix.test }} --run-skipped |