Skip to content

Commit

Permalink
adding dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Dec 4, 2024
1 parent b43c843 commit c43f49a
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 16 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ on:
- 'LICENSE*'
- '.idea/**'
- '.vscode/**'
- '.circleci'
- '.circleci/*'
- 'README.md'
- '.github/dependabot.yml'
- '.github/FUNDING.yml'

jobs:
test:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ out/
report/
report1/
tests/data/tmp/
jest.json

1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ report1/
tests/
index.js
jest.config.js
jest.json
21 changes: 11 additions & 10 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ module.exports = {
globalTeardown: "./tests/teardown.js",
reporters: [
'default',
'github-actions',
["jest-html-reporters", {
publicPath: './tests/report',
filename: 'report.html',
darkTheme: true,
pageTitle: 'mochawesome-converter',
expand: true,
urlForTestFiles: 'https://github.com/agracio/mochawesome-converter/blob/main'
}
]
['github-actions', {silent: false}],
'summary',
// ["jest-html-reporters", {
// publicPath: './tests/report',
// filename: 'report.html',
// darkTheme: true,
// pageTitle: 'mochawesome-converter',
// expand: true,
// urlForTestFiles: 'https://github.com/agracio/mochawesome-converter/blob/main'
// }
// ]
],
}
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "mochawesome-converter",
"version": "1.0.2",
"version": "1.0.3",
"description": "Test report files to Mochawesome and JUnit converter",
"main": "src/converter.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
"test": "jest --json --outputFile=jest.json"
},
"author": "agracio",
"license": "MIT",
Expand Down

0 comments on commit c43f49a

Please sign in to comment.