Skip to content

Commit e5d87c5

Browse files
committed
Show diff between steps
1 parent e448824 commit e5d87c5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/publish_schema.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,23 +59,39 @@ jobs:
5959
JSR_BRANCH: ${{ steps.branch.outputs.branch }}
6060
- name: Install npm tools
6161
run: npm install
62+
- name: Show diff
63+
run: |
64+
ls -l
65+
git diff
6266
- name: Verify installed versions
6367
run: |
6468
npx quicktype --version
6569
npx json2ts --help | head -n2
6670
npx jsr --version
6771
- name: Regenerate schema
6872
run: bst export > schema.json
73+
- name: Show diff
74+
run: |
75+
ls -l
76+
git diff
6977
- name: Regenerate context types
7078
run: |
7179
jq .meta.context schema.json \
7280
| npx quicktype --src-lang schema --lang ts -t Context --just-types \
7381
> context.ts
82+
- name: Show diff
83+
run: |
84+
ls -l
85+
git diff
7486
- name: Regenerate metaschema types
7587
run: |
7688
# Name the file schema so the type will be named Schema
7789
bst export-metaschema > /tmp/schema.json
7890
npx json2ts --unknownAny /tmp/schema.json > metaschema.ts
91+
- name: Show diff
92+
run: |
93+
ls -l
94+
git diff
7995
- name: Determine next version
8096
id: version
8197
run: |

0 commit comments

Comments
 (0)