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 4fa8442 commit 64a52f6Copy full SHA for 64a52f6
.github/workflows/pipedream-sdk-test.yaml
@@ -18,6 +18,21 @@ jobs:
18
- name: Checkout code
19
uses: actions/checkout@v4
20
21
+ - uses: pnpm/[email protected]
22
+ with:
23
+ version: 9.14.2
24
+ - name: Get pnpm store directory
25
+ id: pnpm-cache
26
+ run: |
27
+ echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
28
+ - uses: actions/cache@v4
29
+ name: Setup pnpm cache
30
31
+ path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
32
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
33
+ restore-keys: |
34
+ ${{ runner.os }}-pnpm-store-
35
+
36
- name: Set up Node.js
37
uses: actions/setup-node@v3
38
with:
0 commit comments