Skip to content

Commit

Permalink
add upload artifact step
Browse files Browse the repository at this point in the history
  • Loading branch information
Brailor committed Jun 22, 2021
1 parent 913abad commit 661ae0c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,10 @@ jobs:
yarn build:storybook
- name: Publish to Chromatic
run: |
cd ./packages/__examples__/
cd ./packages/__examples__/__build__
ls -al
- name: Upload the builded stories directory
uses: actions/upload-artifact@v2
with:
name: builded-storybook-artifact
path: ./packages/__examples__/__build__
2 changes: 1 addition & 1 deletion packages/ui-position/src/Position/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type Props = {
shouldPositionOverTarget?: boolean
onPositionChanged?: (...args: any[]) => any
onPositioned?: (...args: any[]) => any
test: string
test?: string
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-spinner/src/Spinner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type Props = {
margin?: any // TODO: ThemeablePropTypes.spacing
elementRef?: (...args: any[]) => any
as?: React.ReactElement
test: string
test?: string
}

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-view/src/View/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type Props = {
borderRadius: keyof typeof ThemeablePropValues.BORDER_RADII
shadow: keyof typeof ThemeablePropValues.SHADOW_TYPES
stacking: keyof typeof ThemeablePropValues.STACKING_TYPES
test: string
test?: string
}

/**
Expand Down

0 comments on commit 661ae0c

Please sign in to comment.