-
Notifications
You must be signed in to change notification settings - Fork 22
56 lines (44 loc) · 1.3 KB
/
main.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
52
53
54
55
56
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install and Build
run: |
npm install
npm run build
- name: Unit Test (with coverage)
run: npm run coverage
- name: Cypress Test
run: npm run dev & npm run cypress:run
- name: Preparing Demo
run: ./scripts/demo.sh
- name: Preparing Storybook
run: npm run build-storybook
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v5
- name: Deploy Pages 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: demo
target-folder: ${{ steps.branch-name.outputs.current_branch }}
- name: Deploy Storybook 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: storybook-static
target-folder: ${{ steps.branch-name.outputs.current_branch }}/storybook