Skip to content

Commit

Permalink
More fixes to use latest corepack
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang committed Feb 9, 2025
1 parent 84b66fb commit e24c667
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,13 @@ jobs:
docker tag litentry/litentry-parachain:${{ env.RELEASE_TAG }} litentry/litentry-parachain:latest
docker images
- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm
- name: Use Latest Corepack
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After : corepack version => $(corepack --version)"
corepack enable && corepack enable pnpm
pnpm --version
- name: Run ts tests for ${{ matrix.chain }}
timeout-minutes: 30
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/verify-correctness-of-vc-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ jobs:
- run: docker images --all

- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm
- name: Use Latest Corepack
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After : corepack version => $(corepack --version)"
corepack enable && corepack enable pnpm
pnpm --version
- name: Launch parachain network
run: |
Expand Down

0 comments on commit e24c667

Please sign in to comment.