From 39cd31772b80fbda0c2182059888750bc1680b68 Mon Sep 17 00:00:00 2001 From: David Diaz Date: Sat, 21 Nov 2020 19:58:07 -0600 Subject: [PATCH] Cli tests should be ran too. --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea65f83..a5225c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,9 @@ jobs: wget https://codeclimate.com/downloads/test-reporter/test-reporter-0.6.3-linux-amd64 -O cc-test-reporter chmod +x ./cc-test-reporter - - name: Run Tests + - name: Run CLI Tests + run: npm test -- ./bin + - name: Run Lib Tests run: npm run test:coverage - name: Report Results if: success()