@meddleware/landing 0.0.2 → 0.0.3
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
name: Publish
|
|
2
|
-
|
|
1
|
+
name: Publish (Docker)
|
|
3
2
|
on:
|
|
4
3
|
push:
|
|
5
4
|
tags:
|
|
@@ -9,6 +8,23 @@ env:
|
|
|
9
8
|
IMAGE: landing
|
|
10
9
|
|
|
11
10
|
jobs:
|
|
11
|
+
verify:
|
|
12
|
+
name: Verify (type-check + test)
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v7.0.1
|
|
16
|
+
- uses: actions/setup-node@v7.0.0
|
|
17
|
+
with:
|
|
18
|
+
node-version: '24'
|
|
19
|
+
- name: Install dependencies
|
|
20
|
+
run: npm ci
|
|
21
|
+
- name: Audit dependencies
|
|
22
|
+
run: npm audit --audit-level=high
|
|
23
|
+
- name: Type-check
|
|
24
|
+
run: npm run type-check --if-present
|
|
25
|
+
- name: Unit tests
|
|
26
|
+
run: npm run test --if-present
|
|
27
|
+
|
|
12
28
|
# ── App: Docker image → quay.io + Docker Hub ────────────────────────────────
|
|
13
29
|
# Split into per-arch native builds + merge so each platform compiles on its
|
|
14
30
|
# own native runner. The arm64 Vite build runs on ubuntu-24.04-arm rather than
|
|
@@ -20,6 +36,7 @@ jobs:
|
|
|
20
36
|
build-docker-amd64-public:
|
|
21
37
|
name: Docker amd64 (quay.io + Docker Hub)
|
|
22
38
|
runs-on: ubuntu-latest
|
|
39
|
+
needs: verify
|
|
23
40
|
permissions:
|
|
24
41
|
contents: read
|
|
25
42
|
steps:
|
|
@@ -55,6 +72,7 @@ jobs:
|
|
|
55
72
|
build-docker-arm64-public:
|
|
56
73
|
name: Docker arm64 (quay.io + Docker Hub)
|
|
57
74
|
runs-on: ubuntu-24.04-arm
|
|
75
|
+
needs: verify
|
|
58
76
|
permissions:
|
|
59
77
|
contents: read
|
|
60
78
|
steps:
|
|
@@ -187,6 +205,7 @@ jobs:
|
|
|
187
205
|
build-docker-amd64-private:
|
|
188
206
|
name: Docker amd64 (self-hosted registry)
|
|
189
207
|
runs-on: ubuntu-latest
|
|
208
|
+
needs: verify
|
|
190
209
|
continue-on-error: true
|
|
191
210
|
permissions:
|
|
192
211
|
contents: read
|
|
@@ -214,6 +233,7 @@ jobs:
|
|
|
214
233
|
build-docker-arm64-private:
|
|
215
234
|
name: Docker arm64 (self-hosted registry)
|
|
216
235
|
runs-on: ubuntu-24.04-arm
|
|
236
|
+
needs: verify
|
|
217
237
|
continue-on-error: true
|
|
218
238
|
permissions:
|
|
219
239
|
contents: read
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meddleware/landing",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"type-check": "vue-tsc --noEmit"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@meddleware/design-tokens": "0.1.
|
|
13
|
-
"@meddleware/ui": "0.1.
|
|
12
|
+
"@meddleware/design-tokens": "0.1.6",
|
|
13
|
+
"@meddleware/ui": "0.1.26",
|
|
14
14
|
"vue": "^3.5.43",
|
|
15
15
|
"vue-router": "^5.3.1"
|
|
16
16
|
},
|