-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (42 loc) · 1.17 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
43
44
45
46
47
48
49
50
51
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: Install Playwright
run: pnpm dlx playwright install --with-deps
working-directory: packages/wow-ui
- name: Serve Storybook
run: nohup pnpm storybook &
working-directory: packages/wow-ui
- name: Run tests
run: pnpm test-storybook
working-directory: packages/wow-ui
- name: Kill pnpm storybook process
run: |
PID=$(ps -ef | grep "pnpm storybook" | grep -v grep | awk '{print $2}')
if [ -n "$PID" ]; then
kill -9 $PID
fi
working-directory: packages/wow-ui