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.
@@ -4,6 +4,8 @@ on:
4
4
  push:
5
5
  branches:
6
6
  - "**"
7
+ tags:
8
+ - "v*"
7
9
  pull_request:
8
10
  workflow_dispatch:
9
11
 
@@ -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'); }"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdex-mobile",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },