We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d7427 commit 35c1d01Copy full SHA for 35c1d01
.github/actions/install-dependencies/action.yml
@@ -20,6 +20,12 @@ runs:
20
cache: "pnpm"
21
registry-url: "https://registry.npmjs.org"
22
23
+ # Enable node compile cache (effective for Node 22+)
24
+ # See https://nodejs.org/docs/v24.11.1/api/module.html#module-compile-cache
25
+ - name: Enable Node Compile Cache
26
+ shell: bash
27
+ run: echo "NODE_COMPILE_CACHE=$HOME/.node_compile_cache" >> $GITHUB_ENV
28
+
29
- name: Install NPM Dependencies
30
shell: bash
31
run: pnpm install --frozen-lockfile
0 commit comments