Alex Dima 3 年 前
コミット
08459beac3
1 ファイル変更3 行追加3 行削除
  1. 3 3
      .github/workflows/ci.yml

+ 3 - 3
.github/workflows/ci.yml

@@ -4,7 +4,7 @@ on: [push, pull_request]
 
 
 jobs:
 jobs:
   build:
   build:
-    name: 'Builds'
+    name: CI
     runs-on: ubuntu-latest
     runs-on: ubuntu-latest
     steps:
     steps:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
@@ -21,11 +21,11 @@ jobs:
           key: ${{ runner.os }}-cacheNodeModules-${{ hashFiles('**/package-lock.json') }}
           key: ${{ runner.os }}-cacheNodeModules-${{ hashFiles('**/package-lock.json') }}
           restore-keys: ${{ runner.os }}-cacheNodeModules-
           restore-keys: ${{ runner.os }}-cacheNodeModules-
 
 
-      - name: Execute npm in root
+      - name: Install node modules (1)
         if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
         if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
         run: npm install
         run: npm install
 
 
-      - name: Execute npm in monaco-editor-webpack-plugin
+      - name: Install node modules (2)
         if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
         if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
         run: npm install --prefix monaco-editor-webpack-plugin
         run: npm install --prefix monaco-editor-webpack-plugin