Skip to content

Commit

Permalink
Add test task
Browse files Browse the repository at this point in the history
  • Loading branch information
justyns committed Jul 13, 2024
1 parent b51c41a commit 85ffebb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/deno-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:

- name: Run Deno test
run: deno test

- name: Coverage
run: deno coverage --lcov cov_profile/ > cov.lcov

# - name: Run linter
# run: deno lint
Expand Down
3 changes: 2 additions & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"build": "silverbullet plug:compile --debug --info --importmap import_map.json silverbullet-ai.plug.yaml",
"build-release": "silverbullet plug:compile --info --importmap import_map.json silverbullet-ai.plug.yaml",
"watch": "silverbullet plug:compile --debug --info --importmap import_map.json silverbullet-ai.plug.yaml -w",
"update-readme": "deno run --allow-read --allow-write scripts/update-readme.ts"
"update-readme": "deno run --allow-read --allow-write scripts/update-readme.ts",
"test": "deno test --coverage=cov_profile --allow-env"
},
"lint": {
"rules": {
Expand Down

0 comments on commit 85ffebb

Please sign in to comment.