Skip to content

Commit

Permalink
add test coverage into CI (#28)
Browse files Browse the repository at this point in the history
* add test coverage into CI

* bump version
  • Loading branch information
Grunet authored May 26, 2024
1 parent 1e19ea8 commit 77a9a77
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- run: deno task lintJsDoc
- run: deno task checkJsDocTypes
- run: deno task test
- run: deno task testCoverage

publishDryRun:
runs-on: ubuntu-24.04
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cov_profile
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.2.3

- Add test coverage in CI

## v0.2.2

- Add an example Github Workflow to the README
Expand Down
5 changes: 3 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grunet/openfeature-for-denodeploy",
"version": "0.2.2",
"version": "0.2.3",
"exports": "./src/index.ts",
"tasks": {
"format": "deno fmt",
Expand All @@ -9,7 +9,8 @@
"checkTypes": "deno check ./src/index.ts",
"lintJsDoc": "deno doc --lint ./src/index.ts",
"checkJsDocTypes": "deno --unstable-kv test --doc",
"test": "deno --unstable-kv test",
"test": "deno --unstable-kv test --coverage=cov_profile",
"testCoverage": "deno coverage cov_profile",
"publishDryRun": "deno publish --dry-run",
"publish": "deno publish"
}
Expand Down

0 comments on commit 77a9a77

Please sign in to comment.