Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
node-version: 24
registry-url: 'https://registry.npmjs.org'

- name: Update npm
run: |
npm -v
npm install -g npm@latest

- name: Extract version from tag
id: tag_version
run: |
Expand All @@ -39,8 +34,10 @@ jobs:
echo "tag=$TAG_NAME" >> $GITHUB_OUTPUT
echo "Extracted version: $VERSION from tag: $TAG_NAME"

# Lint CI uses setup-node's npm as-is. Do not bump to npm@latest here:
# npm v12 defaults allow-git=none and breaks github:apple-sign-in.
- name: Install dependencies
run: npm ci
run: npm ci --allow-git=all

- name: Extract library projects
id: libraries
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
; npm v12+ defaults allow-git=none; this repo uses a github: peer for Apple Sign-In.
allow-git=all