Skip to content

Commit d2403d9

Browse files
committed
Merge branch 'dev' into alexey/1893/match-mode-rules
2 parents e9e745d + ee42f7e commit d2403d9

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/FissionUnitTest.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)