File tree Expand file tree Collapse file tree 1 file changed +21
-11
lines changed Expand file tree Collapse file tree 1 file changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -10,17 +10,27 @@ jobs:
10
10
with :
11
11
node-version : ' 18.16.1'
12
12
13
- - name : Lint 👀
14
- run : |
15
- yarn
16
- yarn lint
13
+ - name : Install dependencies ⚙️
14
+ run : yarn
17
15
18
- - name : Test 🚀
19
- run : |
20
- yarn
21
- yarn test
16
+ # - name: Lint 👀
17
+ # run: yarn lint
18
+ #
19
+ # - name: Test 🚀
20
+ # run: yarn test
21
+ #
22
+ # - name: Build Storybook 📖
23
+ # run: yarn build-storybook
24
+
25
+ - name : Setup Playwright for Storybook tests
26
+ run : yarn playwright install
22
27
23
- - name : Build Storybook 📖
28
+ - name : Storybook Tests (axe-core) ♿️
24
29
run : |
25
- yarn
26
- yarn build-storybook
30
+ yarn storybook &
31
+ echo "wait for storybook to start"
32
+ until curl --output /dev/null --silent --head --fail http://localhost:6006; do
33
+ printf '.'
34
+ sleep 5
35
+ done
36
+ yarn test-storybook
You can’t perform that action at this time.
0 commit comments