Skip to content

Commit

Permalink
fix: fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daybrush committed Apr 13, 2023
1 parent 28c4226 commit 8bc059e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@ jobs:
cache: 'yarn'
- name: restore lerna
uses: actions/cache@v3
id: cache-lerna
with:
path: '**/node_modules'
path: |
'**/node_modules'
~/.cache/ms-playwright
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
- name: Install playwright deps
if: steps.cache-lerna.outputs.cache-hit != 'true'
run: yarn add playwright -D -W
- name: Build helepr
run: yarn build
working-directory: ./packages/helper
Expand Down

0 comments on commit 8bc059e

Please sign in to comment.