File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,21 +38,24 @@ jobs:
3838 id : playwright-version
3939 run : echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
4040
41- - name : Cache downloaded browsers
42- id : cache-browsers
43- uses : actions/cache@v3
44- with :
45- path : |
46- ~/.cache/ms-playwright/
47- key : ${{ runner.os }}-assets-playwright-${{ env.PLAYWRIGHT_VERSION }}-v3
41+ # Transition GH-1205:
42+ # Avoiding the cache step for now as it was causing issues.
43+ # Should revisit this later as this is a major speedup that we lost.
44+ # - name: Cache downloaded browsers
45+ # id: cache-browsers
46+ # uses: actions/cache@v3
47+ # with:
48+ # path: |
49+ # ~/.cache/ms-playwright/
50+ # key: ${{ runner.os }}-assets-playwright-${{ env.PLAYWRIGHT_VERSION }}-v3
4851
4952 - name : Install Dependencies
5053 run : |
5154 cd fission
5255 npm install
5356
5457 - name : Download playwright if not cached
55- if : steps.cache-browsers.outputs.cache-hit != 'true'
58+ # if: steps.cache-browsers.outputs.cache-hit != 'true'
5659 run : |
5760 cd fission
5861 npx playwright install --with-deps
You can’t perform that action at this time.
0 commit comments