mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
chore: fix pnpm 8.9.0
https://github.com/pnpm/pnpm/releases/tag/v8.9.1 is breaking the builds
This commit is contained in:
parent
bf394dd5d1
commit
047e2b78b7
4 changed files with 8 additions and 8 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- name: set store
|
||||
run: |
|
||||
mkdir ~/.pnpm-store
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
|
@ -87,7 +87,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
|
@ -117,7 +117,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
|
@ -144,7 +144,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
|
|
2
.github/workflows/e2e-ui.yml
vendored
2
.github/workflows/e2e-ui.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- name: Install
|
||||
run: pnpm install --reporter=silence --registry http://localhost:4873
|
||||
- name: build
|
||||
|
|
2
.github/workflows/ui-components.yml
vendored
2
.github/workflows/ui-components.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
- name: Install pnpm
|
||||
run: |
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@latest-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
- name: Install
|
||||
run: pnpm install
|
||||
- name: Build storybook
|
||||
|
|
|
@ -46,7 +46,7 @@ To begin your development setup, please install the latest version of pnpm globa
|
|||
```
|
||||
nvm install
|
||||
corepack enable
|
||||
corepack prepare --activate pnpm@next-8
|
||||
corepack prepare --activate pnpm@8.9.0
|
||||
```
|
||||
|
||||
With pnpm installed, the first step is installing all dependencies:
|
||||
|
|
Loading…
Reference in a new issue