Skip to content

Commit

Permalink
Adjust changes
Browse files Browse the repository at this point in the history
  • Loading branch information
RandilaP committed Aug 20, 2023
1 parent 7a9c179 commit aed32fd
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,15 @@ jobs:
with:
node-version: 16

- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
run: yarn install
run: yarn setup

- name: Install Playwright Browsers
run: yarn playwright install chromium --with-deps
Expand Down Expand Up @@ -64,8 +71,15 @@ jobs:
with:
node-version: 16

- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
run: yarn install
run: yarn setup

- name: Install Playwright Browsers
run: yarn playwright install chromium --with-deps
Expand Down

0 comments on commit aed32fd

Please sign in to comment.