On Stable before IME breaking change - [SuperEditor] - Update ime integration to work with custom selection types, and add AttachmentListNode as proof of concept #546
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: Build Clones | |
| on: [pull_request] | |
| jobs: | |
| build_bear: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the bear project directory | |
| working-directory: ./super_clones/bear | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build macos --debug | |
| build_google_docs: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the google_docs project directory | |
| working-directory: ./super_clones/google_docs | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build macos --debug | |
| build_medium: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the medium project directory | |
| working-directory: ./super_clones/medium | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build web --debug | |
| build_obsidian: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the obsidian project directory | |
| working-directory: ./super_clones/obsidian | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build macos --debug | |
| build_slack: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the slack project directory | |
| working-directory: ./super_clones/slack | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build macos --debug | |
| build_quill: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| # Run everything from within the quill project directory | |
| working-directory: ./super_clones/quill | |
| steps: | |
| # Checkout the PR branch | |
| - uses: actions/checkout@v3 | |
| # Setup Flutter environment | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| # Download all the packages that the app uses | |
| - run: flutter pub get | |
| # Build the clone | |
| - run: flutter build macos --debug |