Changes
3 changed files (+4/-6)
-
-
@@ -9,8 +9,8 @@echo "${gray}> deno lint${nocolor}" deno lint echo "${gray}> deno test${nocolor}" deno test echo "${gray}> deno test --doc${nocolor}" deno test --doc echo "${gray}> deno check scripts/*.ts${nocolor}" deno check scripts/*.ts
-
-
-
@@ -16,10 +16,8 @@ - name: Setup Denouses: denoland/setup-deno@v1 with: deno-version: v1.26.x - name: Run doc comment tests run: deno test --doc *.ts - name: Run tests run: deno test --coverage=coverage/ run: deno test --doc --coverage=coverage/ - name: Generate coverage report run: deno coverage coverage/ --lcov --output=cov.lcov --exclude=tests --exclude=_test - name: Upload coverage report
-
-
-
@@ -22,7 +22,7 @@ This command configures these git hooks:- (pre-commit) Run `deno fmt --check` to check files are properly formatted. - (pre-commit) Run `deno lint`. - (pre-commit) Run `deno test` to run unit tests and type check. - (pre-commit) Run `deno test --doc` to run unit tests and type check. - (pre-commit) Run `deno check scripts/build_npm.ts` to run type check for build script. See the contents of each files to see what will be executed.
-