Skip to content

Commit c755476

Browse files
committed
wip
1 parent 413b398 commit c755476

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/playground.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,30 @@ jobs:
5252
charts: ${{ steps.charts.outputs.release }}
5353
template: ${{ steps.template.outputs.release }}
5454
steps:
55-
- name: Checkout repository
55+
- name: Checkout Repo
5656
uses: actions/checkout@v3
57+
58+
- name: Install pnpm
59+
uses: pnpm/action-setup@v3
60+
id: pnpm-install
5761
with:
58-
fetch-depth: 0
62+
version: 9.5
63+
64+
- name: Setup Node
65+
uses: actions/setup-node@v3
66+
with:
67+
node-version: "18.x"
68+
registry-url: "https://registry.npmjs.org"
69+
cache: pnpm
70+
cache-dependency-path: pnpm-lock.yaml
71+
72+
- name: Configure pnpm
73+
run: |
74+
pnpm config set auto-install-peers true
75+
pnpm config set exclude-links-from-lockfile true
76+
77+
- name: Install dependencies
78+
run: pnpm install --frozen-lockfile
5979

6080
- name: Check JavasScript SDK Release
6181
id: js

0 commit comments

Comments
 (0)