Skip to content

Commit 782234e

Browse files
authored
Merge pull request #19 from Y-RyuZU/tauri
2 parents 0eda3a1 + a6d4b1a commit 782234e

File tree

109 files changed

+19998
-4051
lines changed

Some content is hidden

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

109 files changed

+19998
-4051
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ jobs:
4444
build:
4545
name: Build - ${{ matrix.platform.target }}
4646
needs: test
47+
env:
48+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} # Repository Secret
50+
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
4751
strategy:
4852
fail-fast: false
4953
matrix:

.github/workflows/pr-validation.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
restore-keys: |
3636
${{ runner.os }}-pr-
3737
38+
- name: Install system dependencies
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
42+
3843
- name: Install dependencies
3944
run: bun install
4045

@@ -51,7 +56,7 @@ jobs:
5156
run: bun run typecheck
5257

5358
- name: Run tests
54-
run: bun test
59+
run: npm test
5560

5661
- name: Build check
5762
run: |

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# Hidden files (except specific directories)
12
.*
23
!.github/
34
!.devcontainer/
5+
6+
# Cargo.lock should be committed for applications
7+
!Cargo.lock
48
*.zip
59
*.tar.gz
610

@@ -53,3 +57,4 @@ next-env.d.ts
5357
src-tauri/target/
5458
src-tauri/gen/
5559
src-tauri/logs/
60+
mod_analysis/

0 commit comments

Comments
 (0)