Skip to content

Commit

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

Expand Down Expand Up @@ -46,11 +44,12 @@ jobs:
uses: actions/cache@v2
with:
path: |
lib
dist
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Compile TypeScript and build UMD files
run: npm run build:umd

- name: Run ESLint
run: npm run lint

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

- name: Compile TypeScript and build UMD files
run: npm run build:umd

- name: Build coverage
run: npm run test:coverage
Expand Down

0 comments on commit e74aa71

Please sign in to comment.