Skip to content

Commit d638ddc

Browse files
committed
chore: fix ci
1 parent cc41439 commit d638ddc

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- run: corepack enable
13-
- uses: actions/setup-node@v4
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Install pnpm
15+
uses: pnpm/action-setup@v4.1.0
16+
with:
17+
version: 10
18+
19+
- name: Set node LTS
20+
uses: actions/setup-node@v4
1421
with:
15-
node-version: "22"
22+
node-version: lts/*
23+
cache: pnpm
1624
- run: pnpm install
1725
- run: pnpm -F '!docs' build
1826
- run: NUXT_APP_BASE_URL=/vue-split-panel/ pnpm -F docs build --preset github_pages

packages/vue-split-panel/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "@directus/vue-split-panel",
33
"type": "module",
44
"version": "0.0.1",
5-
"packageManager": "pnpm@10.14.0",
65
"description": "Split panel component for Vue based on WebAwesome Split Panel",
76
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
87
"homepage": "https://github.com/rijkvanzanten/vue-split-panel",

0 commit comments

Comments
 (0)