Skip to content

Commit

Permalink
Small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
G43riko committed Oct 11, 2024
1 parent c3da958 commit 7524542
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
needs: build
# needs: build
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"doc:enums": "deno doc --html --name=\"@g43/enums\" --output=docs workspaces/enums/src/index.ts",
"test": "deno test workspaces/**/src/**/*.spec.ts",
"test:doc": "deno test --doc workspaces/**/src/**/*.ts",
"test:coverage": "deno test --coverage workspaces/**/src/**/*.spec.ts",
"test:coverage": "deno test --clean --coverage workspaces/**/src/**/*.spec.ts",
"test:coverage:doc": "deno test --doc --coverage workspaces/**/src/**/*.ts",
"coverage": "deno coverage --html --exclude=\"(spec|bench)\\.(js|mjs|ts|jsx|tsx)$\"",
"coverage:lcov": "deno coverage --lcov --output=coverage/lcov.info --exclude=\"(spec|bench)\\.(js|mjs|ts|jsx|tsx)$\"",
Expand Down
2 changes: 1 addition & 1 deletion deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"include": [
"src/**/*.ts"
"src/**/*.ts",
"workspaces/**/src/**/*.ts"
],
"exclude": [
"workspaces/**/src/**/*spec.ts",
"src/**/*.spec.ts"
],
"compilerOptions": {
Expand Down

0 comments on commit 7524542

Please sign in to comment.