From 08459beac3d0935d9bf7faea0264770b76267fc4 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 12 Nov 2021 21:55:00 +0100 Subject: [PATCH] Minor tweaks --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 944b058b..21f9b530 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - name: 'Builds' + name: CI runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -21,11 +21,11 @@ jobs: key: ${{ runner.os }}-cacheNodeModules-${{ hashFiles('**/package-lock.json') }} restore-keys: ${{ runner.os }}-cacheNodeModules- - - name: Execute npm in root + - name: Install node modules (1) if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }} run: npm install - - name: Execute npm in monaco-editor-webpack-plugin + - name: Install node modules (2) if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }} run: npm install --prefix monaco-editor-webpack-plugin