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 6ce0603Copy full SHA for 6ce0603
.github/workflows/run-checks.yml
@@ -10,17 +10,27 @@ 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: Setup Playwright for Storybook tests
26
+ run: yarn playwright install
27
28
+ - name: Storybook Tests (axe-core) ♿️
29
run: |
- 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
0 commit comments