-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (35 loc) · 1 KB
/
a11y-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: "a11y-test"
on:
pull_request:
branches:
- main
paths:
- packages/wow-ui/src/**
jobs:
accessibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install Dependency
run: pnpm install --no-frozen-lockfile
working-directory: packages/wow-ui
- name: Build Storybook
run: pnpm run build-storybook --quiet
working-directory: packages/wow-ui
- name: Serve Storybook and run tests
run: |
pnpm concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"pnpm http-server storybook-static --port 6006 --silent" \
"pnpm wait-on tcp:6006 && pnpm test-storybook"
working-directory: packages/wow-ui