From 8f9464c436ddca414133a2a93fa72b9900350e66 Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Fri, 9 Apr 2021 23:55:45 +0200 Subject: [PATCH] fix(github/workflows): coverage wrong test command I will never copy paste again. --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9b6f2be4a..d7c4575c6 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -17,7 +17,7 @@ jobs: with: deno-version: v1.8 - name: Create coverage files - run: deno test --unstable --coverage=coverage # create coverage files + run: deno test --unstable --coverage=coverage --no-check -A ./tests/mod.ts # create coverage files - name: Create coverage report run: deno --unstable coverage ./coverage --lcov > coverage.lcov # create coverage report - name: Collect coverage