-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.52 KB
/
Copy pathci.yml
File metadata and controls
62 lines (50 loc) · 1.52 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
name: CI
on:
push:
branches: ["main"]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: project-map-ui/package-lock.json
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: plugins/treework
- name: Install development dependencies
run: |
python -m pip install -r requirements-dev.txt
cd project-map-ui
npm ci
- name: Test Rust runtime
run: cargo test --manifest-path plugins/treework/crates/treework-cli/Cargo.toml
- name: Test Project Map
run: |
cd project-map-ui
npm test
npm run typecheck
npm run build
cd ..
git diff --exit-code -- plugins/treework/assets/graph-panel
- name: Test plugin workflow surfaces
run: |
python scripts/check_cli_regression.py
python scripts/check_project_map_read_model.py
python scripts/check_hooks.py
python scripts/check_mcp.py
python scripts/test_check_activation.py
python scripts/test_macos_quarantine_bootstrap.py
python scripts/check_packaging.py
python scripts/package_release_assets.py