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.
2 parents b43778a + 4e605fd commit ec28718Copy full SHA for ec28718
.github/workflows/tests.yml
@@ -131,7 +131,7 @@ jobs:
131
const sha = '${{ github.event.pull_request.head.sha || github.sha }}';
132
const pr = '${{ github.event.pull_request.number }}';
133
const ref = '${{ github.event.pull_request.number || github.ref }}';
134
- const regex = new RegExp("^tests-[\w]+-"+ref+"-", "m");
+ const regex = new RegExp("^tests-[\\w]+-"+ref+"-", "m"); // Match "tests-<type>-<ref>-" in cache key
135
136
console.log(`PR: ${pr}, SHA: ${sha}`);
137
0 commit comments