Enable github workflow pnpm caching
This commit is contained in:
parent
49846cd66a
commit
d437a6fb11
|
|
@ -22,11 +22,16 @@ jobs:
|
||||||
env:
|
env:
|
||||||
PUPPETEER_SKIP_DOWNLOAD: true
|
PUPPETEER_SKIP_DOWNLOAD: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
- uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
version: 6.32.9
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
check-latest: false
|
||||||
|
cache: 'pnpm'
|
||||||
|
|
||||||
- run: npm i -g pnpm
|
- run: npm i -g pnpm
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue