Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Commit

Permalink
For Github actions CI add caching to reduce build time (by a lot) (#2041
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mtho11 committed Dec 17, 2020
1 parent 5e2f4c1 commit 5292efe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup node
uses: actions/setup-node@v1
with:
Expand Down

0 comments on commit 5292efe

Please sign in to comment.