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 3d42438 commit 36567c8Copy full SHA for 36567c8
.github/workflows/panda-webhook.yml
@@ -19,6 +19,30 @@ jobs:
19
- name: Checkout repository
20
uses: actions/checkout@v4
21
22
+ - name: Install Node.js
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: 20
26
+
27
+ - name: Install pnpm
28
+ uses: pnpm/action-setup@v4
29
30
+ version: latest
31
+ run_install: false
32
33
+ - name: Get pnpm store directory
34
+ shell: bash
35
+ run: |
36
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
37
38
+ - name: Setup pnpm cache
39
+ uses: actions/cache@v4
40
41
+ path: ${{ env.STORE_PATH }}
42
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
43
+ restore-keys: |
44
+ ${{ runner.os }}-pnpm-store-
45
46
- name: Install Playwright dependencies
47
run: pnpm exec playwright install-deps
48
0 commit comments