diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2a673a..dd84e5f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,14 +24,15 @@ jobs: - name: Install build dependencies (apt) run: | - sudo apt install -y libx11-dev libxcursor-dev libpng-dev + sudo apt install -y libx11-dev libxcursor-dev libpng-dev continue-on-error: false - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - name: Caching yarn packages + uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -48,7 +49,8 @@ jobs: id: pip-cache-dir-path run: echo "::set-output name=dir::$(pip cache dir)" - - uses: actions/cache@v2 + - name: Caching pip packages + uses: actions/cache@v2 id: pip-cache # use this to check for `cache-hit` (`steps.pip-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.pip-cache-dir-path.outputs.dir }}