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
Fix NPM access to packages in GitHub package registry (#285)
* Add GitHub NPM registry configuration to .npmrc
* Add version check and Node.js setup to CI workflow
* Refactor event schema version checks in CI workflow
* Add GitHub NPM registry URL to Node.js setup in workflows
* Add NODE_AUTH_TOKEN to GitHub Actions environment for NPM access
* Revert "Add GitHub NPM registry URL to Node.js setup in workflows"
* Move NODE_AUTH_TOKEN to npm view step in CI workflow
* Add NODE_AUTH_TOKEN to NPM install steps in workflows
* Add NODE_AUTH_TOKEN input for GitHub package registry access in workflows
* Add packages:read to permissions
# npm --workspace internal/events run gen:jsonschema
264
-
#
265
-
# - name: Check for schema changes
266
-
# run: git diff --quiet internal/events/schemas
267
-
268
240
check-schema-version-change:
269
241
name: Check event schema version has been updated
270
242
needs: detect-event-schema-package-changes
@@ -290,3 +262,43 @@ jobs:
290
262
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
263
exit 1
292
264
fi
265
+
266
+
check-event-schemas-version-change:
267
+
name: Check for event schemas package version change
0 commit comments