Skip to content

Commit

Permalink
docs(list): adds list item subcomponent to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anechol authored and kajabi-bot committed Aug 18, 2023
1 parent be7cadd commit 39d0349
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/julian-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -64,6 +65,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Lint
run: yarn lint

Expand All @@ -72,6 +78,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Test
run: yarn test

Expand All @@ -80,6 +91,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Build
run: yarn build

Expand All @@ -88,6 +104,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Lerna Boostrap
run: npx lerna bootstrap --ci

Expand All @@ -99,6 +120,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out latest
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Deploy Documentation Site
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
Expand Down
3 changes: 3 additions & 0 deletions packages/sage-react/lib/List/List.story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ export default {
},
},
},
subcomponents: {
'List.Item': ListItem,
},
argTypes: {
...selectArgs({
dragHandleType: List.DRAG_HANDLE_TYPES,
Expand Down

0 comments on commit 39d0349

Please sign in to comment.