From 77b522ef76bcd75b04d0d0f295643d908fe747b0 Mon Sep 17 00:00:00 2001 From: donosonaumczuk Date: Wed, 31 Aug 2022 17:35:06 +0100 Subject: [PATCH] misc: CI optimized by removing redundant compile step --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7844566..d8237686 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,5 @@ jobs: node-version: '16' - name: Install dependencies run: npm ci - - name: Compile code - run: npm run compile - - name: Run test coverage + - name: Compile code and run test coverage run: npm run coverage