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/stage-1-commit.yaml
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -272,6 +272,7 @@ jobs:
272
272
runs-on: ubuntu-latest
273
273
permissions:
274
274
contents: read
275
+
packages: read
275
276
steps:
276
277
- name: Checkout code
277
278
uses: actions/checkout@v4
@@ -290,3 +291,25 @@ jobs:
290
291
echo "Error: Event Schema package has changed, but new version ($local_version) is not a valid increment from latest version on main branch ($main_version)."
291
292
exit 1
292
293
fi
294
+
295
+
- name: Setup NodeJS
296
+
uses: actions/setup-node@v4
297
+
with:
298
+
node-version: ${{ inputs.nodejs_version }}
299
+
300
+
- name: Check if local version differs from latest published version
0 commit comments