From f86b5568f2e89f1027998f06a9dd48ff353bb1d7 Mon Sep 17 00:00:00 2001 From: Robat Williams Date: Thu, 1 Jun 2023 09:33:45 +0100 Subject: [PATCH] Separate CI steps --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c54de0f..5a8fd5c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,6 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - name: npm install, and run CI scripts - run: | - npm install - npm run ci + + - run: npm install + - run: npm run ci