-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (102 loc) · 3.45 KB
/
publish-ghpages.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: Publish GitHub Pages
on:
push:
branches-ignore:
- dependabot/**
- gh-pages
jobs:
publish-storybook:
runs-on:
- ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17.0
- name: Upgrade to yarn
run: yarn set version 4.0.2
- name: Get yarn cache directory path
id: package_manager_cache_dir_path
run: echo "PACKAGE_MANAGER_CACHE_DIR_PATH=$(yarn config get cacheFolder)" >> $GITHUB_ENV
- name: Cache yarn cache directory
uses: actions/cache@v3
with:
path: ${{ env.PACKAGE_MANAGER_CACHE_DIR_PATH }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --immutable --check-cache
- name: Generate directory name
id: dir_name
run: |
DIR_NAME=${{ github.ref }}
DIR_NAME=${DIR_NAME#refs/heads/}
DIR_NAME=${DIR_NAME////_}
echo "DIR_NAME=$DIR_NAME" >> $GITHUB_ENV
- name: Build Storybook
run: yarn run build-storybook -o dist/$DIR_NAME/storybook
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
keep_files: true
user_name: uyupunpopunpo
user_email: [email protected]
publish-lighthouse:
runs-on:
- ubuntu-latest
needs: publish-storybook
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Copy env file
run: cp .env.example .env
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17.0
- name: Upgrade to yarn
run: yarn set version 4.0.2
- name: Get yarn cache directory path
id: package_manager_cache_dir_path
run: echo "PACKAGE_MANAGER_CACHE_DIR_PATH=$(yarn config get cacheFolder)" >> $GITHUB_ENV
- name: Cache yarn cache directory
uses: actions/cache@v3
with:
path: ${{ env.PACKAGE_MANAGER_CACHE_DIR_PATH }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --immutable --check-cache
- name: Build Next.js app
run: yarn build
- name: Start production server
run: yarn start &
- name: Run Lighthouse
uses: treosh/lighthouse-ci-action@v10
with:
urls: http://localhost:3000/
uploadArtifacts: true
temporaryPublicStorage: false
- name: Generate directory name
id: dir_name
run: |
DIR_NAME=${{ github.ref }}
DIR_NAME=${DIR_NAME#refs/heads/}
DIR_NAME=${DIR_NAME////_}
echo "DIR_NAME=$DIR_NAME" >> $GITHUB_ENV
- name: Move Lighthouse report
run: |
mkdir -p dist/$DIR_NAME/lighthouse
mv .lighthouseci/lhr-*.html dist/$DIR_NAME/lighthouse/index.html
- name: Deploy to gh-pages branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
keep_files: true
user_name: uyupunpopunpo
user_email: [email protected]