Skip to content

Commit f38326c

Browse files
committed
fix floating deps job by pulling in latest version of blueprints
1 parent 5a465b6 commit f38326c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,15 @@ jobs:
3434

3535
steps:
3636
- uses: actions/checkout@v3
37-
- uses: wyvox/action-setup-pnpm@v2
37+
- uses: pnpm/action-setup@v2
38+
with:
39+
version: 8
40+
- uses: actions/setup-node@v3
3841
with:
3942
node-version: 18
40-
no-lockfile: true
43+
cache: pnpm
44+
- name: Install Dependencies
45+
run: pnpm install --no-lockfile
4146
- name: Run Tests
4247
run: pnpm test:ember
4348

0 commit comments

Comments
 (0)