diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93981afe2e..b6eca19db9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,12 +19,13 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - - run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo "Started xvfb" + - name: Run display server 🖥 + run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & echo "Started xvfb" shell: bash if: ${{ success() && matrix.os == 'ubuntu-latest' }} - name: Install node_modules 📦 run: npm install - - name: Cache node modules 💾 + - name: Cache node_modules 💾 uses: actions/cache@v2 env: cache-name: cache-node-modules