Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: npm install -g corepack@v0.31.0
- run: corepack enable
- run: pnpm install
- run: pnpm prettier
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ RUN install-tool docker v27.5.1
# renovate: datasource=github-releases packageName=containerbase/node-prebuild versioning=node
RUN install-tool node 20.18.2

# temporary: install corepack via npm until upgrading to a newer version of node where
# https://github.com/nodejs/corepack/issues/612#issuecomment-2616588603
RUN npm install -g corepack@v0.31.0

# enable buildin corepack
RUN corepack enable

Expand Down
Loading