From eb2476a8aa37916166adc496e2e21481ca5c21df Mon Sep 17 00:00:00 2001 From: "Lucas.Xu" Date: Mon, 13 Mar 2023 08:28:27 +0700 Subject: [PATCH 1/2] chore: remove editor CI (#1959) --- .github/workflows/appflowy_editor_test.yml | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/appflowy_editor_test.yml diff --git a/.github/workflows/appflowy_editor_test.yml b/.github/workflows/appflowy_editor_test.yml deleted file mode 100644 index 7bddb948e7..0000000000 --- a/.github/workflows/appflowy_editor_test.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: AppFlowyEditor test - -on: - push: - branches: - - "main" - - "release/*" - - pull_request: - branches: - - "main" - - "release/*" - paths: - - "frontend/appflowy_flutter/packages/appflowy_editor/**" - -env: - CARGO_TERM_COLOR: always - FLUTTER_VERSION: "3.3.9" - -jobs: - tests: - strategy: - matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v2 - - - uses: subosito/flutter-action@v2 - with: - channel: "stable" - flutter-version: ${{ env.FLUTTER_VERSION }} - cache: true - - - name: Run FlowyEditor tests - working-directory: frontend/appflowy_flutter/packages/appflowy_editor - run: | - flutter pub get - flutter format --set-exit-if-changed . - flutter analyze . - flutter test --coverage - - - uses: codecov/codecov-action@v3 - with: - name: appflowy_editor - flags: appflowy_editor - env_vars: ${{ matrix.os }} - fail_ci_if_error: true - verbose: true - From 79a43de2d5379fd31a4395cea501378628026c37 Mon Sep 17 00:00:00 2001 From: Mayur Mahajan <47064215+MayurSMahajan@users.noreply.github.com> Date: Mon, 13 Mar 2023 07:00:11 +0530 Subject: [PATCH 2/2] chore: changed the link of shortcuts page (#1979) --- .../presentation/widgets/float_bubble/question_bubble.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart index 89b2976bc7..6f91748661 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/widgets/float_bubble/question_bubble.dart @@ -66,7 +66,7 @@ class BubbleActionList extends StatelessWidget { break; case BubbleAction.shortcuts: _launchURL( - "https://github.com/AppFlowy-IO/AppFlowy-Docs/blob/main/essential-documentation/shortcuts.md"); + "https://appflowy.gitbook.io/docs/essential-documentation/shortcuts"); break; } }