Skip to content

Commit

Permalink
Merge 6edfbb5 into 4802153
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Sep 30, 2023
2 parents 4802153 + 6edfbb5 commit 9cdaae3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 23 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
files: .tap/report/lcov.info


automerge:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ sandbox.js
package-lock.json
tap-testdir-*
coverage
.tap

33 changes: 10 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s test:*",
"test-skip:standard": "standard",
"test:tap": "c8 tap --jobs-auto --reporter specy --no-bail --no-coverage --color --timeout 1200000",
"test:tap": "tap",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md"
Expand Down Expand Up @@ -43,8 +43,7 @@
"gh-release": "^7.0.0",
"npm-run-all2": "^6.0.0",
"standard": "^17.0.0",
"tap": "^16.3.2",
"c8": "^8.0.0",
"tap": "^18.4.0",
"p-temporary-directory": "^2.0.1"
},
"dependencies": {
Expand All @@ -56,26 +55,14 @@
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"c8": {
"reporter": [
"lcov",
"text"
],
"all": true,
"exclude": [
"examples/*",
"test-cases/*",
"coverage/**",
"packages/*/test{,s}/**",
"**/*.d.ts",
"test{,s}/**",
"test{,-*}.{js,cjs,mjs,ts,tsx,jsx}",
"**/*{.,-}test.{js,cjs,mjs,ts,tsx,jsx}",
"**/__tests__/**",
"**/{ava,babel,nyc}.config.{js,cjs,mjs}",
"**/jest.config.{js,cjs,mjs,ts}",
"**/{karma,rollup,webpack}.config.js",
"**/.{eslint,mocha}rc.{js,cjs}"
"tap": {
"serial": [],
"typecheck": false,
"allow-incomplete-coverage": true,
"timeout": 1200000,
"coverage-report": [
"text",
"lcovonly"
]
},
"engines": {
Expand Down

0 comments on commit 9cdaae3

Please sign in to comment.