File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
.github/actions/setup-pnpm Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 5858
5959 echo "PNPM_HOME=$PNPM_HOME" >> "$GITHUB_ENV"
6060 echo "npm_config_store_dir=$PNPM_STORE_DIR" >> "$GITHUB_ENV"
61- echo "npm_config_store_dir =$PNPM_STORE_DIR" >> $GITHUB_OUTPUT
61+ echo "pnpm_config_store_dir =$PNPM_STORE_DIR" >> "$GITHUB_ENV"
6262 echo "TASKS_CACHE_DIR=$TASKS_CACHE_DIR" >> "$GITHUB_ENV"
6363 echo "NX_CACHE_DIRECTORY=$NX_CACHE_DIRECTORY" >> "$GITHUB_ENV"
6464 echo "$PNPM_HOME" >> $GITHUB_PATH
7171
7272 echo "PNPM_HOME=${{ env.PNPM_HOME }}"
7373 echo "npm_config_store_dir=${{ env.npm_config_store_dir }}"
74+ echo "pnpm_config_store_dir=${{ env.pnpm_config_store_dir }}"
7475
7576 echo "TASKS_CACHE_DIR=${{ env.TASKS_CACHE_DIR }}"
7677 echo "NX_CACHE_DIRECTORY=${{ env.NX_CACHE_DIRECTORY }}"
8889 run : |
8990 which curl || (apt-get update && apt-get install -y curl)
9091
92+ - name : Don't check if node_modules are outdated on CI
93+ shell : bash
94+ run : |
95+ echo 'pnpm_config_verify_deps_before_run=false' >> $GITHUB_ENV
96+
9197 - name : Install pnpm & node
9298 if : steps.restore-pnpm-cache.outputs.cache-hit != 'true'
9399 shell : bash
You can’t perform that action at this time.
0 commit comments