Skip to content

Commit

Permalink
Fixed playwright version detection
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 22, 2023
1 parent 53a3fd9 commit f7d0491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ jobs:
- name: Get installed Playwright version
id: playwright-version
run: |
echo "version=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")"
echo "version=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_OUTPUT
echo "version=$(node -e "console.log(require('./package-lock.json').packages['node_modules/@playwright/test'].version)")"
echo "version=$(node -e "console.log(require('./package-lock.json').packages['node_modules/@playwright/test'].version)")" >> $GITHUB_OUTPUT
- name: Cache playwright binaries
id: playwright-cache
Expand Down

0 comments on commit f7d0491

Please sign in to comment.