fix: keep response-file temp file for downstream steps

The temporary file created for response-file was being cleaned up
before downstream steps could access it. Now using keep: true to
ensure the file persists until the job completes.

Also added script/ to eslint ignores for the mock server.
This commit is contained in:
Sean Goedecke
2025-11-27 21:06:42 +00:00
parent fd73d0264c
commit 18d468666d
5 changed files with 16 additions and 62 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const compat = new FlatCompat({
export default [
{
ignores: ['**/coverage', '**/dist', '**/linter', '**/node_modules'],
ignores: ['**/coverage', '**/dist', '**/linter', '**/node_modules', 'script/**'],
},
...compat.extends(
'eslint:recommended',