[PR #1851] [MERGED] Appflowy tauri ci #4975

Closed
opened 2026-03-23 22:16:40 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1851
Author: @appflowy
Created: 2/13/2023
Status: Merged
Merged: 2/13/2023
Merged by: @appflowy

Base: mainHead: appflowy_tauri_ci


📝 Commits (9)

  • 9b49f13 chore: add notification parser
  • 00bb723 chore: rename classes to models
  • 9efaf20 refactor: add effects and reducers folder
  • ea92717 chore: update eslint version
  • 266f5f2 chore: run npx eslint --fix src
  • 1c43049 fix: ParserOptions.project error by ignore linting the .eslintrc.cjs
  • da14bdd ci: add tauri lint
  • 56d6bca ci: disable ubuntu and windows tauri ci
  • 8f12cd7 ci: install

📊 Changes

65 files changed (+110 additions, -106 deletions)

View changed files

📝 .github/workflows/tauri_ci.yaml (+9 -1)
📝 frontend/.vscode/settings.json (+2 -0)
📝 frontend/.vscode/tasks.json (+13 -5)
📝 frontend/appflowy_tauri/.eslintignore (+3 -1)
📝 frontend/appflowy_tauri/.gitignore (+1 -1)
📝 frontend/appflowy_tauri/package.json (+6 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/App.tsx (+8 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx (+5 -9)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/ConfirmAccount/ConfirmAccount.hooks.ts (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.hooks.ts (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.hooks.ts (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/auth/auth.hooks.ts (+2 -2)
frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeAction.ts (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeReducer.test.ts (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeReducer.ts (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/board/index.ts (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/board/presentation/RemoveMeComponent.test.tsx (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/board/presentation/RemoveMeComponent.tsx (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/editor/index.ts (+0 -1)
frontend/appflowy_tauri/src/appflowy_app/components/editor/presentation/RemoveMeComponent.test.tsx (+0 -1)

...and 45 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/1851 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/13/2023 **Status:** ✅ Merged **Merged:** 2/13/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `appflowy_tauri_ci` --- ### 📝 Commits (9) - [`9b49f13`](https://github.com/AppFlowy-IO/AppFlowy/commit/9b49f13d6fde20d5005b80835028336a90f3b952) chore: add notification parser - [`00bb723`](https://github.com/AppFlowy-IO/AppFlowy/commit/00bb723d1e14311d8e162d18444353f0df1bb238) chore: rename classes to models - [`9efaf20`](https://github.com/AppFlowy-IO/AppFlowy/commit/9efaf20600077cf15dbd58576e863c131c1923ea) refactor: add effects and reducers folder - [`ea92717`](https://github.com/AppFlowy-IO/AppFlowy/commit/ea927171be00dc1476ebcd30f82a1c691bb97222) chore: update eslint version - [`266f5f2`](https://github.com/AppFlowy-IO/AppFlowy/commit/266f5f20fa5c4ca92dd12af8be3185436f0d2e0c) chore: run npx eslint --fix src - [`1c43049`](https://github.com/AppFlowy-IO/AppFlowy/commit/1c43049d3ce0ec414c3be36ffa0cb16e0a195388) fix: ParserOptions.project error by ignore linting the .eslintrc.cjs - [`da14bdd`](https://github.com/AppFlowy-IO/AppFlowy/commit/da14bddbb1523ae4b6ecc47328211a70dc61cd7e) ci: add tauri lint - [`56d6bca`](https://github.com/AppFlowy-IO/AppFlowy/commit/56d6bca69558bdc9b040501c808a6520335db10f) ci: disable ubuntu and windows tauri ci - [`8f12cd7`](https://github.com/AppFlowy-IO/AppFlowy/commit/8f12cd7f9fc84a0c08fdb0c12f1cfb27da83a976) ci: install ### 📊 Changes **65 files changed** (+110 additions, -106 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/tauri_ci.yaml` (+9 -1) 📝 `frontend/.vscode/settings.json` (+2 -0) 📝 `frontend/.vscode/tasks.json` (+13 -5) 📝 `frontend/appflowy_tauri/.eslintignore` (+3 -1) 📝 `frontend/appflowy_tauri/.gitignore` (+1 -1) 📝 `frontend/appflowy_tauri/package.json` (+6 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/App.tsx` (+8 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/TestApiButton/TestApiButton.tsx` (+5 -9) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/ConfirmAccount/ConfirmAccount.hooks.ts` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/Login/Login.hooks.ts` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/SignUp/SignUp.hooks.ts` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/auth/auth.hooks.ts` (+2 -2) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeAction.ts` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeReducer.test.ts` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/application/RemoveMeReducer.ts` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/index.ts` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/presentation/RemoveMeComponent.test.tsx` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/board/presentation/RemoveMeComponent.tsx` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/editor/index.ts` (+0 -1) ➖ `frontend/appflowy_tauri/src/appflowy_app/components/editor/presentation/RemoveMeComponent.test.tsx` (+0 -1) _...and 45 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:40 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#4975
No description provided.