Skip to content

Commit b6eb03c

Browse files
committed
feat: use pnpm 11; fix codequality workflow
1 parent 20ae1c3 commit b6eb03c

4 files changed

Lines changed: 13 additions & 14 deletions

File tree

.github/workflows/codequality.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
11-
12-
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903
13-
with:
14-
node-version: 24
15-
16-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
17-
with:
18-
version: 10.19.0
19-
run_install: true
20-
10+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
11+
- uses: pnpm/setup@84cb39b217b10273981911c288cd62326dc7c6d2
2112
- run: |
2213
pnpm run lint
23-
pnpm run codestyle-check
14+
pnpm run format:check

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM node:24-alpine AS base
22

3-
RUN npm install -g pnpm@11.13.1
3+
RUN npm install -g pnpm@11.19.0
44

55
COPY --chown=node:node . /zeppelin
66
WORKDIR /zeppelin

docker/development/devenv/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
1414
RUN apt-get install -y nodejs gcc g++ make python3
1515

1616
# Install pnpm
17-
RUN npm install -g pnpm@10.19.0
17+
RUN npm install -g pnpm@11.19.0
1818

1919
# Delete default sudo user and create unprivileged user
2020
RUN userdel -r ubuntu

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,13 @@
2424
},
2525
"engines": {
2626
"node": ">=24"
27+
},
28+
"packageManager": "pnpm@11.19.0",
29+
"devEngines": {
30+
"runtime": {
31+
"name": "node",
32+
"version": "^24.0.0",
33+
"onFail": "download"
34+
}
2735
}
2836
}

0 commit comments

Comments
 (0)