Skip to content

Commit 75e5b57

Browse files
committed
Merge branch 'dev' into feat/cloud-backup
2 parents 12ba092 + 8c2a08a commit 75e5b57

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3084
-2823
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@maiertech
2+
@daniel-mader

.github/workflows/format-lint-test.yaml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: ["dev"]
88

9+
env:
10+
PUBLIC_DEV_MODE_MENU_EXPANDED: false
11+
PUBLIC_STYLE_SAFE_AREA_INSETS: false
12+
913
jobs:
1014
unime_frontend:
1115
runs-on: ubuntu-latest
@@ -35,19 +39,17 @@ jobs:
3539
- name: Test
3640
run: pnpm test
3741

42+
- name: Check
43+
run: pnpm check
44+
3845
unime_core:
3946
runs-on: ubuntu-latest
4047

4148
steps:
4249
- uses: actions/checkout@v4
4350

4451
- name: Use Rust stable
45-
# TODO Set back to @stable (workaround for #224).
46-
# uses: dtolnay/[email protected] fails because it does not include rustfmt.
47-
uses: dtolnay/rust-toolchain@master
48-
with:
49-
toolchain: 1.77.2
50-
components: clippy, rustfmt
52+
uses: dtolnay/rust-toolchain@stable
5153

5254
- name: Install dependencies
5355
working-directory: ./unime/src-tauri
@@ -72,9 +74,6 @@ jobs:
7274
- name: Build frontend
7375
# Otherwise linting will fail with error: The `distDir` configuration is set to `"../build"` but this path doesn't exist.
7476
run: pnpm i --frozen-lockfile && pnpm build
75-
env:
76-
PUBLIC_DEV_MODE_MENU_EXPANDED: false
77-
PUBLIC_STYLE_SAFE_AREA_INSETS: false
7877

7978
- name: Lint
8079
working-directory: ./unime/src-tauri
@@ -91,11 +90,7 @@ jobs:
9190
- uses: actions/checkout@v4
9291

9392
- name: Use Rust stable
94-
# TODO See comment above.
95-
uses: dtolnay/rust-toolchain@master
96-
with:
97-
toolchain: 1.77.2
98-
components: clippy, rustfmt
93+
uses: dtolnay/rust-toolchain@stable
9994

10095
- name: Install dependencies
10196
working-directory: ./identity-wallet

0 commit comments

Comments
 (0)