this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: enable Node compile cache (#1009)

authored by

Victor Berchet and committed by
GitHub
35c1d015 50d74273

+6
+6
.github/actions/install-dependencies/action.yml
··· 20 20 cache: "pnpm" 21 21 registry-url: "https://registry.npmjs.org" 22 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 + 23 29 - name: Install NPM Dependencies 24 30 shell: bash 25 31 run: pnpm install --frozen-lockfile