diff --git a/README.md b/README.md index 538b9f8..1d8933a 100644 --- a/README.md +++ b/README.md @@ -172,6 +172,7 @@ All available languages are currently listed in the [i18n](https://github.com/di ### Push to git Pushing to git is on by default but if you would like to turn it off just use: + ```sh oc config set OCO_GITPUSH=false ``` diff --git a/jest.config.ts b/jest.config.ts index 6bca393..ee0d397 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -3,26 +3,25 @@ * https://jestjs.io/docs/configuration */ -import type {Config} from 'jest'; +import type { Config } from 'jest'; const config: Config = { - coverageProvider: "v8", - moduleDirectories: [ - "node_modules", - "src", - ], + testTimeout: 100_000, + coverageProvider: 'v8', + moduleDirectories: ['node_modules', 'src'], preset: 'ts-jest/presets/js-with-ts-esm', setupFilesAfterEnv: ['/test/jest-setup.ts'], - testEnvironment: "node", - testRegex: [ - '.*\\.test\\.ts$', - ], + testEnvironment: 'node', + testRegex: ['.*\\.test\\.ts$'], transformIgnorePatterns: ['node_modules/(?!cli-testing-library)'], transform: { - '^.+\\.(ts|tsx)$': ['ts-jest', { - diagnostics: false, - useESM: true - }], + '^.+\\.(ts|tsx)$': [ + 'ts-jest', + { + diagnostics: false, + useESM: true + } + ] } }; diff --git a/package-lock.json b/package-lock.json index fd70713..96892ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "opencommit", - "version": "3.0.13", + "version": "3.0.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "opencommit", - "version": "3.0.13", + "version": "3.0.14", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0",