aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix sh template filenamesKevin J Hoerr2021-09-171-2/+2
|
* #14 Changed /bash file to /shKevin J Hoerr2021-09-175-19/+25
|
* Prepare repository for 0.5.0 releaseKevin J Hoerr2021-09-163-45/+48
|
* Add format to head commit infoKevin J Hoerr2021-09-165-117/+90
|
* #7 Add Cobertura formatKevin J Hoerr2021-09-1611-26/+454
|
* Refactor coverage upload for ease of new formatsKevin J Hoerr2021-09-123-58/+65
|
* Add target filename to formatKevin J Hoerr2021-09-122-2/+4
|
* Refactor upload processingKevin J Hoerr2021-09-126-54/+80
|
* Fix running container error with volumeKevin J Hoerr2021-09-121-1/+1
|
* Prepare repository for 0.4.4 releaseKevin J Hoerr2021-09-123-3/+6
|
* Remove inaccessible code branchKevin J Hoerr2021-09-121-2/+1
|
* Refactor env config into MetadataKevin J Hoerr2021-09-127-41/+95
|
* Move token to metadataKevin J Hoerr2021-09-124-6/+15
|
* Update node images in DockerfileKevin J Hoerr2021-09-112-2/+7
|
* Upgrade packages and fix unit testsKevin J Hoerr2021-09-114-2894/+12092
|
* Update dependencies to suppress MongoClient outputKevin J Hoerr2020-05-062-354/+1554
|
* Prepare repository for 0.4.3 releaseKevin J Hoerr2020-04-273-19/+26
|
* Fix templates not properly injecting contextKevin J Hoerr2020-04-271-2/+2
|
* Fix CHANGELOG version numberKevin J Hoerr2020-04-271-1/+1
|
* Add TSDoc and TypeDoc to handle documentationKevin J Hoerr2020-04-277-5/+169
|
* Refactor startup to passthrough valuesKevin J Hoerr2020-04-275-50/+67
| | | | | | | | Even more refactoring - however there were some small troubles using path in the nested scripts/files, so referencing them via the index should be a bit more stable. Plus, the config unit tests won't just exit because of configOrError constants strewn about the file.
* Add unit tests and correct CHANGELOGKevin J Hoerr2020-04-274-8/+201
|
* #11 Handle unknown paths with 404 pageKevin J Hoerr2020-04-273-0/+38
|
* Handle promise errors in handleStartupKevin J Hoerr2020-04-271-35/+42
|
* These changes moved a lot of the startup async to run in a streamlinedKevin J Hoerr2020-04-268-152/+308
| | | | | | | | | | async init function. This brings more logic "to light", so it should probably have unit tests added to check the edge cases. As a bonus, no async runs as a result of route initialization. Speaking of routes, it might be nice to trim down the route calls themselves with async functions, if possible. The upload routes in particular use a lot of async. Just a note for the future.
* Upgrade packages and fix express type changeKevin J Hoerr2020-04-264-852/+983
|
* Update jest to 25.1Kevin J Hoerr2020-02-232-1708/+2358
|
* Prepare repository for 0.4.1 releaseKevin J Hoerr2020-02-232-1/+8
|
* Fix styling for mobile/smaller displaysKevin J Hoerr2020-02-232-9/+15
|
* Prepare repository for 0.4.0 releaseKevin J Hoerr2020-02-222-1/+5
|
* #2 Add CSS, favicon for landing pageKevin J Hoerr2020-02-224-2/+89
|
* Update packages to latestKevin J Hoerr2020-02-222-71/+105
|
* #8 Add router unit tests using supertestKevin J Hoerr2020-01-116-35/+387
| | | | Also moved the template processing from index to router.
* #9 Use SILENT in bash, more explicit verbosityKevin J Hoerr2020-01-011-16/+28
|
* Move template files to subfolderKevin J Hoerr2019-12-293-2/+2
| | | | | | | More static files will likely be used that do not require using a template (e.g. favicon.ico), so storing them in the public folder will keep them with other served files without getting them confused with the templates.
* Add index.html template with route for integrationKevin J Hoerr2019-12-293-0/+33
|
* #5 Add more descriptive output to bash scriptKevin J Hoerr2019-12-282-3/+45
|
* Prepare repository for 0.3.3 releaseKevin J Hoerr2019-12-213-63/+67
|
* #4 Lower brightness of generated report badgesKevin J Hoerr2019-12-212-72/+58
|
* AOC-3 Catch promise rejections in POST requestKevin J Hoerr2019-12-213-4/+12
|
* Prepare repository for 0.3.2 releaseKevin J Hoerr2019-12-123-6/+9
|
* Use nullish-coalescing op for env var assignmentsKevin J Hoerr2019-12-126-9/+12
|
* Fix color matcher for inbetween step valuesKevin J Hoerr2019-12-122-2/+26
|
* Add changes based on unit tests to CHANGELOGKevin J Hoerr2019-12-121-0/+5
|
* Add unit tests for util/config.tsKevin J Hoerr2019-12-122-6/+154
|
* Simplify and generalize template processingKevin J Hoerr2019-12-125-26/+91
| | | | "For the unit tests. For the unit tests!"
* Add ts-jest to improve TS coverage reportsKevin J Hoerr2019-12-114-4/+95
|
* Prepare repository for 0.3.1 releaseKevin J Hoerr2019-12-113-7/+10
|
* Finish developing unit tests for formats, loggerKevin J Hoerr2019-12-119-6/+882
|
* Add Jest to handle unit and integration testingKevin J Hoerr2019-12-118-16/+4013
| | | | | | | | | | | | Wrote a couple of initial unit tests for some of the logic-heavy points in the application, being logger.ts and formats.ts. Evidently colorize() causes an error when transforming on the Format object that's returned. Since that is specific to the Console transport anyways, I just moved it to the transport, since the unit test was only testing the passed label in the returned Formats object. Also the bash template has some issues that I didn't test (oops), so those are fixed now.