We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff522a commit 417e5d8Copy full SHA for 417e5d8
.github/workflows/run-checks.yml
@@ -10,17 +10,24 @@ jobs:
10
with:
11
node-version: '18.16.1'
12
13
+ - name: Install dependencies ⚙️
14
+ run: yarn
15
+
16
- name: Lint 👀
- run: |
- yarn
- yarn lint
17
+ run: yarn lint
18
19
- name: Test 🚀
20
21
- yarn test
+ run: yarn test
22
23
- name: Build Storybook 📖
+ run: yarn build-storybook
24
25
+ - name: Storybook Tests (axe-core) ♿️
26
run: |
- yarn build-storybook
27
+ yarn storybook &
28
+ echo "wait for storybook to start"
29
+ until curl --output /dev/null --silent --head --fail http://localhost:6006; do
30
+ printf '.'
31
+ sleep 5
32
+ done
33
+ yarn test-storybook
0 commit comments