diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index f2dcb2d..4520849 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -19,7 +19,7 @@ jobs: node_version: 18.x - name: Build Tokens - run: yarn build:tokens + run: yarn build:tokens --no-cache # Build Storybook and extract component stories for Storybook aggregation. This will be used # for Chromatic rebaselining and publishing to GH Pages. diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 11a52d9..12d4713 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -25,10 +25,10 @@ jobs: node_version: 18.x - name: Build Tokens - run: yarn build:tokens + run: yarn build:tokens --no-cache - name: Build Storybook - run: yarn build-storybook --quiet + run: yarn build-storybook --no-cache - name: Cache Build id: build-cache @@ -54,7 +54,7 @@ jobs: run: yarn lint - name: Build Tokens - run: yarn build:tokens + run: yarn build:tokens --no-cache - name: Type Check shell: bash