Skip to content

Commit

Permalink
ci(ci.yml): include lib and dist in all jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Jan 13, 2021
1 parent add7891 commit dd9c83a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
- name: Get cached modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: |
lib
dist
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Run ESLint
Expand All @@ -67,7 +70,10 @@ jobs:
- name: Get cached modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: |
lib
dist
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Build coverage
Expand Down

0 comments on commit dd9c83a

Please sign in to comment.