We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d76eb2a commit f3dd4a2Copy full SHA for f3dd4a2
.github/workflows/agent-tars-website.yml
@@ -38,24 +38,11 @@ jobs:
38
uses: actions/setup-node@v4
39
with:
40
node-version: '20'
41
+ cache: 'pnpm'
42
- - name: Setup PNPM
43
- uses: pnpm/action-setup@v3
44
- with:
45
- version: '9.10.0'
46
-
47
- - name: Get pnpm store directory
48
- shell: bash
+ - name: Install PNPM
49
run: |
50
- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
51
52
- - name: Setup pnpm cache
53
- uses: actions/cache@v4
54
55
- path: ${{ env.STORE_PATH }}
56
- key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
57
- restore-keys: |
58
- ${{ runner.os }}-pnpm-store-
+ npm install -g pnpm@9.10.0
59
60
- name: Install dependencies (website only)
61
0 commit comments