Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
128 changes: 64 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.4",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"babel-jest": "^30.2.0",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
Expand All @@ -76,7 +76,7 @@
"markdownlint-cli2": "^0.23.0",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.1"
"typescript-eslint": "^8.63.0"
},
"overrides": {
"test-exclude": "^7.0.1",
Expand Down
3 changes: 0 additions & 3 deletions src/artifact-preservation-errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
jest.mock('execa', () => require('./test-helpers/mock-execa.test-utils').execaMockFactory());

jest.mock('./artifact-permissions', () => {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const real = jest.requireActual<typeof import('./artifact-permissions')>('./artifact-permissions');
return {
...real,
Expand All @@ -28,7 +27,6 @@ jest.mock('./artifact-permissions', () => {
// can inject one-shot errors without using jest.spyOn (which fails on non-
// configurable properties in Jest's module sandbox).
jest.mock('fs', () => {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const real = jest.requireActual<typeof import('fs')>('fs');
return {
...real,
Expand All @@ -51,7 +49,6 @@ import {
} from './artifact-preservation';

// Cast mocked methods for convenient mockImplementationOnce usage.
// eslint-disable-next-line @typescript-eslint/no-require-imports
const realFs = jest.requireActual<typeof import('fs')>('fs');
const mockCopyFileSync = fs.copyFileSync as jest.MockedFunction<typeof fs.copyFileSync>;
const mockFixArtifactPermissionsForRootless =
Expand Down
Loading