Skip to content

Commit a6bda9f

Browse files
committed
Merge branch 'chore/SD-1526-ts-refactor' into chore/SD-1526-ui-forms-fixes
2 parents cc6aef3 + 7207606 commit a6bda9f

File tree

6 files changed

+9
-31
lines changed

6 files changed

+9
-31
lines changed

.github/workflows/components.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
name: UI Libraries
2-
on:
3-
push:
4-
paths:
5-
- ".github/workflows/components.yml"
6-
- "packages/ripple-storybook/**"
7-
- "packages/ripple-ui-core/**"
8-
- "packages/ripple-ui-forms/**"
9-
- "pnpm-lock.yaml"
2+
on: [push]
103
jobs:
114
Storybook:
125
runs-on: ubuntu-latest
136
steps:
147
- uses: actions/checkout@v4
8+
with:
9+
fetch-depth: 0
1510
- name: Install pnpm
1611
uses: pnpm/action-setup@v4
1712
with:
@@ -34,7 +29,7 @@ jobs:
3429
- name: Run Storybook tests
3530
run: pnpm test:storybook-ci
3631
- name: Publish to Chromatic
37-
uses: chromaui/action@v1
32+
uses: chromaui/action@latest
3833
with:
3934
workingDir: packages/ripple-storybook
4035
storybookBuildDir: "storybook-static"

.github/workflows/docs.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
paths:
55
- ".github/workflows/docs.yml"
66
- "docs"
7-
- "packages/ripple-ui-core/**"
8-
- "packages/ripple-ui-forms/**"
9-
- "pnpm-lock.yaml"
107
jobs:
118
Docs:
129
runs-on: ubuntu-latest

.github/workflows/vue.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
name: Vue
2-
on:
3-
push:
4-
paths:
5-
- ".github/workflows/vue.yml"
6-
- "examples/vue-app/**"
7-
- "packages/ripple-ui-core/**"
8-
- "packages/ripple-ui-forms/**"
9-
- "pnpm-lock.yaml"
2+
on: [push]
103
jobs:
114
Examples:
125
runs-on: ubuntu-latest

.github/workflows/webcomponents.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
name: Webcomponents
2-
on:
3-
push:
4-
paths:
5-
- '.github/workflows/webcomponents.yml'
6-
- 'examples/webcomponents/**'
7-
- 'packages/ripple-ui-core/**'
8-
- 'packages/ripple-ui-forms/**'
9-
- 'pnpm-lock.yaml'
2+
on: [push]
103
jobs:
114
Examples:
125
runs-on: ubuntu-latest
@@ -23,7 +16,7 @@ jobs:
2316
uses: actions/setup-node@v4
2417
with:
2518
node-version: 20
26-
cache: 'pnpm'
19+
cache: "pnpm"
2720

2821
- name: Install Dependencies
2922
env:

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @dgs-frontend
1+
* @dpc-sdp/dgs-frontend

packages/ripple-storybook/.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const config: StorybookConfig = {
4141
addons: ['@storybook/addon-a11y', '@storybook/addon-vitest'],
4242
framework: {
4343
name: '@storybook/vue3-vite',
44-
options: {}
44+
options: { docgen: 'vue-component-meta' }
4545
},
4646
staticDirs: ['./public'],
4747
previewHead: (head) => `

0 commit comments

Comments
 (0)