We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79637ee commit f53a14aCopy full SHA for f53a14a
.github/workflows/ci.yaml
@@ -11,6 +11,8 @@ jobs:
11
ci:
12
name: Install & Testing
13
runs-on: ubuntu-latest
14
+ container:
15
+ image: mcr.microsoft.com/playwright:v1.52.0-noble
16
steps:
17
- uses: actions/checkout@v4
18
- uses: actions/setup-node@v4
@@ -35,6 +37,13 @@ jobs:
35
37
name: unit test results
36
38
path: junit.xml
39
reporter: jest-junit
40
+ # test storybook tests
41
+ - name: Serve Storybook static
42
+ run: npx serve dist/docs -l 6006 &
43
+ - name: Wait for Storybook to be ready
44
+ run: npx wait-on http://127.0.0.1:6006
45
+ - name: Run Storybook tests
46
+ run: yarn test:stories --url http://127.0.0.1:6006
47
48
# publish docs
49
docs_publish:
0 commit comments