Ver código fonte

refactor: improved readability (#22384)

Gm 3 anos atrás
pai
commit
87f660c9f5
1 arquivos alterados com 7 adições e 2 exclusões
  1. 7 2
      .github/workflows/ci.yml

+ 7 - 2
.github/workflows/ci.yml

@@ -41,7 +41,9 @@ jobs:
         with:
           node-version: 12
       - name: Install packages
-        run: npm ci && npm ci --prefix test
+        run: |
+          npm ci
+          npm ci --prefix test
       - name: Build
         run: npm run build
 
@@ -65,7 +67,10 @@ jobs:
         with:
           node-version: 12
       - name: Install packages
-        run: npm ci && npm ci --prefix test && sudo apt-get install xvfb
+        run: |
+          npm ci
+          npm ci --prefix test
+          sudo apt-get install xvfb
       - name: Build
         run: npm run build