Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -27,7 +27,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: dist
name: Cache dist
with:
Expand All @@ -53,7 +53,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -63,7 +63,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: lint-cache
name: Load lint cache
with:
Expand All @@ -90,7 +90,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -101,7 +101,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: dist
name: Cache dist
with:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -142,7 +142,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: dist
name: Cache dist
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Load npm deps from cache
with:
Expand All @@ -40,7 +40,7 @@ jobs:
if: always()
- run: yarn build
name: Build component groups
- uses: actions/cache@v2
- uses: actions/cache@v4
id: docs-cache
name: Load webpack cache
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
with:
Expand All @@ -29,7 +29,7 @@ jobs:
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v2
- uses: actions/cache@v4
id: dist
name: Cache dist
with:
Expand Down
Loading