Skip to content

Commit

Permalink
chore(messagepipeline): license/copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Aug 1, 2024
1 parent 13ff222 commit a696d21
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/messagepipeline_esm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
run: deno bundle mod.ts mod.mjs
- name: Test
working-directory: messagepipeline
run: deno test -A
run: |
deno test -A
deno task clean
- name: Publish
working-directory: messagepipeline
run: deno publish
Expand Down
3 changes: 2 additions & 1 deletion messagepipeline/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
},
"tasks": {
"build": "deno bundle --reload mod.ts messagepipeline.js",
"test": "rm -Rf ./coverage/ & deno test --allow-all --parallel --reload --quiet --coverage=coverage",
"clean": "rm -Rf ./coverage messagepipeline.js",
"test": "deno task clean & deno test --allow-all --parallel --reload --quiet --coverage=coverage",
"cover": "deno coverage ./coverage --lcov > ./coverage/out.lcov && genhtml -o ./coverage/html ./coverage/out.lcov && open ./coverage/html/index.html"
},
"imports": {
Expand Down

0 comments on commit a696d21

Please sign in to comment.