-
Notifications
You must be signed in to change notification settings - Fork 173
38 lines (31 loc) · 876 Bytes
/
Copy pathstorybook.yml
File metadata and controls
38 lines (31 loc) · 876 Bytes
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
name: Storybook Tests
on:
push:
branches: [main, feat/storybook-ui-components]
paths:
- 'frontend/**'
pull_request:
branches: [main]
paths:
- 'frontend/**'
jobs:
storybook-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build Storybook
run: npm run build-storybook
- name: Run Storybook tests
run: npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server storybook-static --port 6006 --silent" \
"npx wait-on tcp:6006 && npm run test-storybook -- --ci"