-
Notifications
You must be signed in to change notification settings - Fork 0
167 lines (158 loc) · 4.18 KB
/
build.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
#
# SPDX-License-Identifier: Apache-2.0
name: Build and deploy web application
on:
push:
# Runs on every push
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gleam
uses: erlef/setup-beam@v1
with:
otp-version: "27"
gleam-version: "1.4"
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.1"
- name: Install dependencies
run: "bun i"
- name: Build the app
run: "bun run build --base '/${{ github.event.repository.name }}/'"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: main
path: dist
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gleam
uses: erlef/setup-beam@v1
with:
otp-version: "27"
gleam-version: "1.4"
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.1"
- name: Install dependencies
run: "bun i"
- name: Check TypeScript types
run: "bunx tsc"
- name: Check Gleam types
run: "gleam check"
build-storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gleam
uses: erlef/setup-beam@v1
with:
otp-version: "27"
gleam-version: "1.4"
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.1"
- name: Install dependencies
run: "bun i"
- name: Build Storybook
run: "bun run build:storybook"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: storybook
path: storybook-static
prep-artifact-for-pages:
# Deploy only on master branch
if: github.ref == 'refs/heads/master'
needs:
- build
- build-storybook
runs-on: ubuntu-latest
steps:
- name: Download main artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
name: main
- name: Download sub artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
pattern: "!main"
- name: Upload artifact for Pages
uses: actions/upload-pages-artifact@v3
with:
path: artifacts
deploy:
# Deploy only on master branch
if: github.ref == 'refs/heads/master'
concurrency:
group: deploy-ghpages
needs:
- check
- prep-artifact-for-pages
- test-storybook
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
test-storybook:
needs:
- build-storybook
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download built Storybook
uses: actions/download-artifact@v4
with:
path: storybook-static
name: storybook
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "1.1"
# Needs Node.js since bunx is not compatible with npx
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Install dependencies
run: "bun i"
- name: Setup Playwright
run: "npx playwright install --with-deps"
- name: Run 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 && bun run test:storybook --browsers chromium,firefox,webkit"
cleanup:
needs:
- deploy
- test-storybook
runs-on: ubuntu-latest
steps:
- name: Delete artifacts
uses: geekyeggo/delete-artifact@v5
with:
name: "*"