chore(ci): refine pr ci steps (#9429)

* chore(ci): refine pr ci steps

* fix: line errors
This commit is contained in:
one 2025-08-22 22:52:03 +08:00 committed by GitHub
parent e3ca927306
commit 35968f4861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 4 deletions

View File

@ -45,8 +45,14 @@ jobs:
- name: Install Dependencies
run: yarn install
- name: Build Check
run: yarn build:check
- name: Lint Check
run: yarn test:lint
- name: Type Check
run: yarn typecheck
- name: i18n Check
run: yarn check:i18n
- name: Test
run: yarn test

View File

@ -1,7 +1,7 @@
import { isDev, isWin } from '@main/constant'
import { app } from 'electron'
import { getDataPath } from './utils'
import { isWin, isDev } from '@main/constant'
if (isDev) {
app.setPath('userData', app.getPath('userData') + 'Dev')

View File

@ -1,5 +1,6 @@
import { Notification as ElectronNotification } from 'electron'
import { Notification } from 'src/renderer/src/types/notification'
import { windowService } from './WindowService'
class NotificationService {