Skip to content

Commit

Permalink
chore: Update GH action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
alanbsmith committed Oct 20, 2023
1 parent f211548 commit c042a66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c042a66

Please sign in to comment.