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
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,15 +348,28 @@ jobs:
- name: Edit .npmrc [link-workspace-packages=false]
run: sed -i -E 's/link-workspace-packages=(deep|true)/link-workspace-packages=false/' .npmrc

# - name: Configure pnpm to ignore minimum release age for @clerk packages
# if: ${{ steps.task-status.outputs.affected == '1' }}
# run: |
# echo "minimum-release-age-exclude=@clerk/*" >> .npmrc
# pnpm config set minimum-release-age-exclude @clerk/*
Comment on lines +351 to +355
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be removed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


- name: Install @clerk/backend in /integration
if: ${{ steps.task-status.outputs.affected == '1' }}
working-directory: ./integration
run: pnpm init && pnpm add @clerk/backend
run: |
pnpm init
pnpm config set minimum-release-age-exclude @clerk/*
pnpm add @clerk/backend

- name: Install @clerk/clerk-js in os temp
if: ${{ steps.task-status.outputs.affected == '1' }}
working-directory: ${{runner.temp}}
run: mkdir clerk-js && cd clerk-js && pnpm init && pnpm add @clerk/clerk-js
run: |
mkdir clerk-js && cd clerk-js
pnpm init
pnpm config set minimum-release-age-exclude @clerk/*
pnpm add @clerk/clerk-js

- name: Copy components @clerk/astro
if: ${{ matrix.test-name == 'astro' }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"typescript": "catalog:repo",
"typescript-eslint": "8.38.0",
"uuid": "8.3.2",
"verdaccio": "^5.33.0",
"verdaccio": "6.1.6",
"vitest": "3.0.5",
"yalc": "1.0.0-pre.53",
"zx": "catalog:repo"
Expand Down
Loading