diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ba692434b..f1dd793a7f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,13 +13,6 @@ jobs: - uses: actions/checkout@v2 - id: nodeversion run: echo ::set-output name=NODE::$(cat .nvmrc) - - name: restore Cache - uses: actions/cache@master - with: - path: | - node_modules - /home/runner/.cache/Cypress - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - name: Use Node.js ${{steps.nodeversion.outputs.NODE}} uses: actions/setup-node@v1 with: @@ -35,7 +28,6 @@ jobs: - name: Cypress run uses: cypress-io/github-action@v2 with: - cache-key: node-on-${{ runner.os }}-hash-${{ hashFiles('yarn.lock') }} start: yarn dev wait-on: 'http://localhost:5173' - name: build