From 52f52b62e4b2c6f6a7be1be9b72fbbd4d0ee15dc Mon Sep 17 00:00:00 2001 From: Florent Chehab Date: Sun, 10 May 2020 22:20:04 +0200 Subject: [PATCH] feat(ci): run test --- .../workflows/{linting-code.yml => linting-testing-code.yml} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{linting-code.yml => linting-testing-code.yml} (87%) diff --git a/.github/workflows/linting-code.yml b/.github/workflows/linting-testing-code.yml similarity index 87% rename from .github/workflows/linting-code.yml rename to .github/workflows/linting-testing-code.yml index f900057..a2191fd 100644 --- a/.github/workflows/linting-code.yml +++ b/.github/workflows/linting-testing-code.yml @@ -1,6 +1,6 @@ # This workflow will do a clean install of node dependencies and check the code style -name: Linting code CI +name: Linting and testing code CI on: push: @@ -19,3 +19,4 @@ jobs: node-version: 12.x - run: npm ci - run: npm run style + - run: npm run test