We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22732d commit ab48c51Copy full SHA for ab48c51
1 file changed
.github/workflows/upload-json-schema.yml
@@ -13,9 +13,21 @@ jobs:
13
id-token: 'write'
14
15
steps:
16
- - id: 'checkout'
+ - id: checkout
17
uses: 'actions/checkout@v4'
18
19
+ - name: Use Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: '24'
23
+
24
+ - name: Install dependencies
25
+ run: npm ci
26
27
+ - id: create-schema
28
+ name: Create JSON Schema
29
+ run: npm run create-json-schema
30
31
- id: 'auth'
32
uses: 'google-github-actions/auth@v3'
33
with:
0 commit comments