mirror of
https://github.com/webiny/action-conventional-commits.git
synced 2024-11-10 03:59:32 +01:00
chore: add jest
This commit is contained in:
parent
a51e58c36f
commit
ea000a8484
3 changed files with 27 additions and 2 deletions
13
babel.config.js
Normal file
13
babel.config.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
module.exports = {
|
||||
presets: [
|
||||
'@babel/preset-typescript',
|
||||
[
|
||||
'@babel/preset-env',
|
||||
{
|
||||
targets: {
|
||||
node: 'current',
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
};
|
5
jest.config.js
Normal file
5
jest.config.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
module.exports = {
|
||||
clearMocks: true,
|
||||
coverageDirectory: "coverage",
|
||||
testEnvironment: "node",
|
||||
};
|
11
package.json
11
package.json
|
@ -9,15 +9,22 @@
|
|||
"@actions/core": "^1.2.3",
|
||||
"@actions/exec": "^1.0.3",
|
||||
"@actions/github": "^2.1.1",
|
||||
"@types/jest": "^26.0.0",
|
||||
"got": "^11.3.0",
|
||||
"lodash.get": "^4.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.10.2",
|
||||
"@babel/preset-env": "^7.10.2",
|
||||
"@babel/preset-typescript": "^7.10.1",
|
||||
"@zeit/ncc": "^0.22.0",
|
||||
"babel-jest": "^26.0.1",
|
||||
"jest": "^26.0.1",
|
||||
"prettier": "^2.0.2"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "ncc build main.ts --out dist/main",
|
||||
"watch": "ncc build main.ts --out dist/main --watch"
|
||||
"build": "ncc build src/main.ts --out dist/main",
|
||||
"watch": "ncc build src/main.ts --out dist/main --watch",
|
||||
"test": "jest"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue