diff options
| author | Christoph Schlosser <2466365+cschlosser@users.noreply.github.com> | 2021-04-30 16:03:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 16:03:47 +0200 |
| commit | 15f166329f3c8040a8aa3772dbb2fd4614a4a8b2 (patch) | |
| tree | 5e568c2c73470cdd7fda0cb4eea87c9867eb7697 /.nycrc | |
| parent | e5b544978594082190d2edb866470046af6374a5 (diff) | |
| download | doxdocgen-15f166329f3c8040a8aa3772dbb2fd4614a4a8b2.tar.gz | |
Use Github actions instead of travis and appveyor (#216)
* Switch to GH workflow
* Use tslint action
* Add build matrix
* Run test stage
* Disable ubuntu test run due to bug in vscode
* Publish coverage on macOS
* Remove istanbul
* codecov action
* Move nyc config to nycrc
* Add CD workflow
* Remove old publishing script
Diffstat (limited to '.nycrc')
| -rw-r--r-- | .nycrc | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1,5 +1,25 @@ { "extends": "@istanbuljs/nyc-config-typescript", + "cache": false, + "cwd": "./", + "exclude": [ + "**/**.test.js" + ], + "extension": [ + ".ts", + ".tsx" + ], + "hookRequire": true, + "hookRunInContext": true, + "hookRunInThisContext": true, + "instrument": true, + "reporter": ["json", "text"], + "recursive": true, + "require": [ + "ts-node/register", + "source-map-support/register" + ], + "sourceMap": true, "all": true, "include": [ "src/Lang" ] } |