From c042a66d0fcb70c4e2a877b5a1218955b49addeb Mon Sep 17 00:00:00 2001 From: Alan B Smith Date: Fri, 20 Oct 2023 16:33:30 -0600 Subject: [PATCH] chore: Update GH action workflows --- .github/workflows/merge.yml | 4 ++-- .github/workflows/pull-request.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 72e8737..b7e6e9a 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -23,13 +23,13 @@ jobs: - name: Build Tokens shell: bash - 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. - name: Build Storybook shell: bash - run: yarn build-storybook + run: yarn build-storybook --no-cache - name: Publish Storybook uses: JamesIves/github-pages-deploy-action@v4.4.1 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