You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/validate.yml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,9 @@ jobs:
20
20
run: bun run scripts/sync-upstream-queries.ts --check
21
21
22
22
- name: Validate extension manifests
23
-
run: bun run scripts/validate.ts
23
+
run: |
24
+
bun run scripts/package-extensions.ts
25
+
bun run scripts/validate.ts
24
26
25
27
- name: Check manifests.json is up to date
26
28
run: |
@@ -30,6 +32,9 @@ jobs:
30
32
- name: Check registry.json and index.json are up to date
31
33
run: bun run scripts/build-extensions-index.ts --check
32
34
35
+
- name: Check packaged extensions are up to date
36
+
run: git diff --exit-code extensions packages || (echo "Packaged extension artifacts are out of date. Run: bun run scripts/package-extensions.ts" && exit 1)
0 commit comments