-
Notifications
You must be signed in to change notification settings - Fork 5
90 lines (72 loc) · 1.84 KB
/
test.yml
File metadata and controls
90 lines (72 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Run Tests
on:
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
paths-ignore:
- '**/*.yaml'
- '**/*.yml'
- '**/*.md'
- '**/*.txt'
- '**/*.json'
push:
branches: [ main ]
paths-ignore:
- '**/*.yaml'
- '**/*.yml'
- '**/*.md'
- '**/*.txt'
- '**/*.json'
env:
CARGO_TERM_COLOR: always
jobs:
frontend-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Run type check
run: npm run type-check
- name: Run frontend tests
run: npm test
backend-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev
- name: Install Node.js dependencies
run: npm ci
- name: Build frontend
run: npm run build
- name: Cache Cargo dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
src-tauri/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run backend tests
run: cd src-tauri && cargo test
- name: Run Cargo check
run: cd src-tauri && cargo check