clawdex-mobile 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.github/workflows/ci.yml
CHANGED
|
@@ -32,9 +32,25 @@ jobs:
|
|
|
32
32
|
cache: npm
|
|
33
33
|
cache-dependency-path: package-lock.json
|
|
34
34
|
|
|
35
|
+
- name: Setup Rust toolchain
|
|
36
|
+
uses: dtolnay/rust-toolchain@stable
|
|
37
|
+
|
|
38
|
+
- name: Cache Rust dependencies
|
|
39
|
+
uses: Swatinem/rust-cache@v2
|
|
40
|
+
|
|
35
41
|
- name: Install dependencies
|
|
36
42
|
run: npm ci
|
|
37
43
|
|
|
44
|
+
- name: Verify Rust bridge compiles
|
|
45
|
+
working-directory: services/rust-bridge
|
|
46
|
+
run: cargo check --locked
|
|
47
|
+
|
|
48
|
+
- name: Run monorepo quality gates
|
|
49
|
+
run: |
|
|
50
|
+
npm run lint
|
|
51
|
+
npm run typecheck
|
|
52
|
+
npm run test
|
|
53
|
+
|
|
38
54
|
- name: Verify package is publishable
|
|
39
55
|
run: |
|
|
40
56
|
node -e "const p=require('./package.json'); if (p.private) { throw new Error('package.json has private=true; cannot publish'); } if (!p.name || !p.version) { throw new Error('package.json must include name + version'); }"
|