Skip to content

Commit

Permalink
investigate workflow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jbilcke-hf committed Jul 21, 2024
1 parent 3cddcc8 commit 3138404
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@ jobs:
run: npm install @playwright/test@${{ env.PLAYWRIGHT_VERSION }}
- name: Install Playwright Browsers
run: npx playwright install --with-deps ${{ inputs.browser }}
if: steps.playwright-cache.outputs.cache-hit != 'true'
# disabled for now as we have caching issues:
#_if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: Install system dependencies for WebKit
# Some WebKit dependencies seem to lay outside the cache and will need to be installed separately
if: ${{ inputs.browser == 'webkit' && steps.playwright-cache.outputs.cache-hit == 'true' }}
# disabled for now as we have caching issues:
#_if: ${{ inputs.browser == 'webkit' && steps.playwright-cache.outputs.cache-hit == 'true' }}
run: npx playwright install-deps webkit
- name: Run build
run: npm run build:ci
Expand Down

0 comments on commit 3138404

Please sign in to comment.