Skip to content

Commit

Permalink
attempt to fix yarn dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rotu committed Jun 20, 2024
1 parent 542571a commit 760e64d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
- if: ${{ matrix.pm == 'pnpm' }}
run: |
npm install -g pnpm
pnpm add "git+${{ github.repositoryUrl }}#${{ github.ref }}"
pnpm add "${{ github.repositoryUrl }}#${{ github.ref }}"
env:
NPM_CONFIG_LOGLEVEL: verbose

Expand All @@ -215,7 +215,8 @@ jobs:
npm install -g yarn
yarn set version stable
yarn install
yarn add "git+${{ github.repositoryUrl }}#${{ github.ref }}"
# seems like yarn doesn't like using pull request branches of the form #pull/<number>/merge
yarn add "zeromq@${{ github.repositoryUrl }}#${{ github.head_ref || github.ref}}"
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
YARN_ENABLE_INLINE_BUILDS: true
Expand Down

0 comments on commit 760e64d

Please sign in to comment.