Skip to content

Commit

Permalink
test: github action cache node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
hq001 committed Dec 19, 2020
1 parent f5ca97a commit 81fc96d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- uses: actions/checkout@v2

- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: |
Expand All @@ -26,9 +27,11 @@ jobs:

- name: install
run: yarn install
if: steps.cache-node-modules.outputs.cache-hit != 'true'

- name: install lerna
run: yarn bootstrap
if: steps.cache-node-modules.outputs.cache-hit != 'true'


cypress-run:
Expand Down

0 comments on commit 81fc96d

Please sign in to comment.