Skip to content

Commit

Permalink
Installing NPM dependencies before listing playwright version
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Oct 21, 2023
1 parent 5a43585 commit ce517f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ jobs:
npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-
npm-dependencies-${{ runner.os }}-
- name: "Install NPM dependencies"
run: |
npm ci
- name: Get installed Playwright version
id: playwright-version
run: |
Expand All @@ -151,10 +155,6 @@ jobs:
path: "~/.cache/ms-playwright"
key: playwright-binaries-${{ runner.os }}-${{ env.cache-version }}-${{ steps.playwright-version.outputs.version }}

- name: "Install NPM dependencies"
run: |
npm ci
- name: "Install playwright binaries"
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit ce517f2

Please sign in to comment.