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 0834da7 commit 6e5251dCopy full SHA for 6e5251d
.github/workflows/build.yml
@@ -178,7 +178,11 @@ jobs:
178
uses: actions/cache@v3
179
with:
180
path: node_modules/.cache/nx
181
- key: ${{ runner.os }}-nx
+ key: nx-${{ runner.os }}-${{ github.ref }}-${{ env.HEAD_COMMIT }}
182
+ restore-keys: |
183
+ nx-${{ runner.os }}-${{ github.ref }}-${{ env.HEAD_COMMIT }}
184
+ nx-${{ runner.os }}-${{ github.ref }}
185
+ nx-${{ runner.os }}
186
- name: Build packages
187
# Under normal circumstances, using the git SHA as a cache key, there shouldn't ever be a cache hit on the built
188
# packages, and so `yarn build` should always run. This `if` check is therefore only there for testing CI issues
0 commit comments