Skip to content

Commit

Permalink
remove caching
Browse files Browse the repository at this point in the history
  • Loading branch information
alexasselin008 authored Sep 26, 2023
1 parent 412bcd5 commit 79104f6
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,9 @@ jobs:
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- name: Cache yarn dependencies
uses: actions/cache@v3
id: cache-dependencies
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.ox }}-yarn-
cache: "yarn"
- name: Install Dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
yarn install --frozen-lockfile
run: yarn install --frozen-lockfile
- name: Build Packages
run: yarn build
- name: Publish to Chromatic
Expand All @@ -40,4 +31,4 @@ jobs:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: build-sb-chroma


0 comments on commit 79104f6

Please sign in to comment.