-
Notifications
You must be signed in to change notification settings - Fork 3
88 lines (81 loc) · 2.67 KB
/
Copy pathci.yml
File metadata and controls
88 lines (81 loc) · 2.67 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
name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
desktop-frontend:
# The desktop dependency graph intentionally includes macOS-only packaging
# tools, so validate it on the platform the application ships on.
runs-on: macos-14
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
- run: npm audit --audit-level=high
landing:
runs-on: ubuntu-latest
defaults:
run:
working-directory: landing
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
cache: npm
cache-dependency-path: landing/package-lock.json
- run: npm ci
- run: npm test
- run: npm run build
- run: npm audit --audit-level=high
workers:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
service: [grid-review, points, verifier]
defaults:
run:
working-directory: staking/services/${{ matrix.service }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
cache: npm
cache-dependency-path: staking/services/${{ matrix.service }}/package-lock.json
- run: npm ci
- run: npm run typecheck
- run: npm audit --audit-level=high
rust:
runs-on: macos-14
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@4cda84d5c5c54efe2404f9d843567869ab1699d4 # stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
with:
workspaces: src-tauri
- run: cargo fmt --manifest-path src-tauri/Cargo.toml --check
- run: cargo check --manifest-path src-tauri/Cargo.toml --locked
- run: cargo clippy --manifest-path src-tauri/Cargo.toml --locked --all-targets -- -D warnings
- run: cargo test --manifest-path src-tauri/Cargo.toml --locked