Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmail committed Aug 21, 2024
1 parent 7d17ab2 commit 9de1f5c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci_test_workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ jobs:

- name: Print playwright version
run: echo "${{ env.PLAYWRIGHT_VERSION }}"
- name: Toto
env:
FOO: format({0}{1}, $HOME, '\AppData\Local\ms-playwright')
BAR: $HOME\AppData\Local\ms-playwright
ZAZ: ${{ $HOME\AppData\Local\ms-playwright }}
ZOO: ${{ env.HOME\AppData\Local\ms-playwright }}
run: echo "${{ env.FOO }}, ${{ env.BAR }}, ${{ env.ZAZ }}, ${{ env.ZOO }}"

# Attempt to restore the correct Playwright browser binaries based on the
# currently installed version of Playwright (The browser binary versions
Expand All @@ -98,7 +105,7 @@ jobs:
id: playwright-cache
with:
# see https://playwright.dev/docs/browsers#managing-browser-binaries
path: ${{ runner.os == 'Windows' && join(env.HOME, '\AppData\Local\ms-playwright') || runner.os == 'Linux' && '~/.cache/ms-playwright' || '~/Library/Caches/ms-playwright' }}
path: ${{ runner.os == 'Windows' && format({0}{1}, env.HOME, '\AppData\Local\ms-playwright') || runner.os == 'Linux' && '~/.cache/ms-playwright' || '~/Library/Caches/ms-playwright' }}
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
# As a fallback, if the Playwright version has changed, try use the
# most recently cached version. There's a good chance that at least one
Expand Down

0 comments on commit 9de1f5c

Please sign in to comment.