2023-02-20 05:11:15 -05:00
|
|
|
import fs from 'fs';
|
|
|
|
import os from 'os';
|
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-build-push-action-'));
|
|
|
|
|
2023-01-13 07:23:43 -05:00
|
|
|
process.env = Object.assign({}, process.env, {
|
2023-02-20 05:11:15 -05:00
|
|
|
TEMP: tmpDir,
|
2023-01-13 07:23:43 -05:00
|
|
|
GITHUB_REPOSITORY: 'docker/build-push-action',
|
2023-02-20 05:11:15 -05:00
|
|
|
RUNNER_TEMP: path.join(tmpDir, 'runner-temp'),
|
|
|
|
RUNNER_TOOL_CACHE: path.join(tmpDir, 'runner-tool-cache')
|
2023-01-13 07:23:43 -05:00
|
|
|
}) as {
|
|
|
|
[key: string]: string;
|
|
|
|
};
|
|
|
|
|
2020-08-16 20:32:27 -04:00
|
|
|
module.exports = {
|
2020-10-19 15:17:06 -04:00
|
|
|
clearMocks: false,
|
2023-01-13 07:23:43 -05:00
|
|
|
testEnvironment: 'node',
|
2020-08-16 20:32:27 -04:00
|
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
|
|
testMatch: ['**/*.test.ts'],
|
|
|
|
transform: {
|
|
|
|
'^.+\\.ts$': 'ts-jest'
|
|
|
|
},
|
2022-04-25 00:47:48 -04:00
|
|
|
moduleNameMapper: {
|
|
|
|
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
|
|
|
|
},
|
2023-02-20 05:11:15 -05:00
|
|
|
collectCoverageFrom: ['src/**/{!(main.ts),}.ts'],
|
|
|
|
coveragePathIgnorePatterns: ['lib/', 'node_modules/', '__mocks__/', '__tests__/'],
|
2022-03-15 16:59:52 -04:00
|
|
|
verbose: true
|
2022-04-25 00:47:48 -04:00
|
|
|
};
|