Skip to content

Commit

Permalink
deliberately introduce visual change
Browse files Browse the repository at this point in the history
  • Loading branch information
robonyong committed Aug 14, 2024
1 parent a866897 commit ae03f42
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,6 @@ jobs:
name: Run Chromatic
runs-on: ubuntu-latest
steps:
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.ui-changes.outputs.all_changed_files }}
ANY_CHANGED: ${{ steps.ui-changes.outputs.any_changed }}
run: |
echo "Found changed ${#ALL_CHANGED_FILES[@]} files"
for file in ${ALL_CHANGED_FILES}; do
echo "$file"
done
- name: Checkout code
uses: actions/checkout@v4
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
src/**
src/*
!src/demo/**
.storybook/**
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.ui-changes.outputs.all_changed_files }}
ANY_CHANGED: ${{ steps.ui-changes.outputs.any_changed }}
run: |
echo "Found ${#ALL_CHANGED_FILES[@]} changed UI file(s), $ANY_CHANGED"
chromatic:
name: Run Chromatic
Expand Down
2 changes: 2 additions & 0 deletions src/SplitFlapDisplay/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
color: var(--color);
box-sizing: border-box;

border-radius: 10px;

> * {
&:not(:first-child) {
border-left: var(--border-color) var(--border-width) solid;
Expand Down

0 comments on commit ae03f42

Please sign in to comment.