-
-
Notifications
You must be signed in to change notification settings - Fork 58
229 lines (218 loc) · 7.14 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
name: 'Main'
on:
push:
tags: ['*']
branches: ['*']
pull_request:
branches: ['*']
schedule:
- cron: '25 12 * * 3'
workflow_dispatch:
permissions: {}
jobs:
lint:
name: 'Lint'
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
cache: 'npm'
- name: 'Install'
run: 'npm ci'
- name: 'Lint'
run: 'npm run lint'
docs:
name: 'Docs'
needs: ['lint']
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
cache: 'npm'
- name: 'Install'
run: 'npm ci'
- name: 'Docs'
run: 'npm run docs'
build-node:
name: 'Build and test on Node.js ${{ matrix.node_version }}'
needs: ['lint']
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
node_version: ['lts/-1', 'lts/*', 'current']
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ matrix.node_version }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ matrix.node_version }}'
cache: 'npm'
- name: 'Install'
run: 'npm ci'
- name: 'Build'
run: 'npm run types && npm run build'
- name: 'Test'
run: 'npm run test:node'
build-deno:
name: 'Build and test on Deno ${{ matrix.deno_version }}'
needs: ['lint']
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
deno_version: ['vx.x.x']
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
cache: 'npm'
- name: 'Use Deno ${{ matrix.deno_version }}'
uses: 'denoland/setup-deno@0df5d9c641efdff149993c321fc27c11c5df8623'
with:
deno-version: '${{ matrix.deno_version }}'
- name: 'Install'
run: 'npm ci'
- name: 'Build'
run: 'npm run types && npm run build'
- name: 'Test'
run: 'npm run test:deno'
build-bun:
name: 'Build and test on Bun ${{ matrix.bun_version }}'
needs: ['lint']
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
bun_version: ['latest']
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
cache: 'npm'
- name: 'Use Bun ${{ matrix.bun_version }}'
run: 'npm install -g bun@${{ matrix.bun_version }}'
- name: 'Install'
run: 'npm ci'
- name: 'Build'
run: 'npm run types && npm run build'
- name: 'Test'
run: 'npm run test:bun'
build-browser:
name: 'Build and test on ${{ matrix.browser }} browser'
needs: ['lint']
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
strategy:
fail-fast: false
matrix:
browser: ['chromium', 'firefox', 'webkit']
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
cache: 'npm'
- name: 'Install'
run: 'npm ci && npx playwright install --with-deps "${{ matrix.browser }}"'
- name: 'Build'
run: 'npm run types && npm run build'
- name: 'Test'
run: 'npm run test:browser:"${{ matrix.browser }}"'
publish-npm:
name: 'Publish npm package'
if: "startsWith(github.ref, 'refs/tags/v')"
needs:
- 'build-node'
- 'build-deno'
- 'build-bun'
- 'build-browser'
runs-on: 'ubuntu-latest'
permissions:
contents: 'read'
env:
NODE_VERSION: 'lts/*'
steps:
- name: 'Checkout'
uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608'
- name: 'Use Node.js ${{ env.NODE_VERSION }}'
uses: 'actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d'
with:
node-version: '${{ env.NODE_VERSION }}'
registry-url: 'https://registry.npmjs.org'
- name: 'Publish package'
env:
NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}'
run: |
PKG_NAME="$(jq -r '.name' ./package.json)"; PKG_VERSION="$(jq -r '.version' ./package.json)"
if [ "$(npm view "${PKG_NAME:?}" versions --json | jq -r --arg v "${PKG_VERSION:?}" 'index($v)')" = 'null' ]; then
npm publish
fi
release-github:
name: 'Create GitHub release'
if: "startsWith(github.ref, 'refs/tags/v')"
needs:
- 'build-node'
- 'build-deno'
- 'build-bun'
- 'build-browser'
runs-on: 'ubuntu-latest'
permissions:
contents: 'write'
steps:
- name: 'Create release'
env:
GITHUB_PAT: '${{ secrets.GITHUB_TOKEN }}'
run: |
RELEASE_STATUS="$(curl -fs --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases/tags/${GITHUB_REF_NAME:?}" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--write-out '%{http_code}' --output /dev/null ||:)"
if [ "${RELEASE_STATUS:?}" = '200' ]; then exit 0; fi
RELEASE_ID="$(curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--data "$(jq -rn --arg tag "${GITHUB_REF_NAME:?}" '{"name": $tag, "tag_name": $tag, "generate_release_notes": true}')" | jq -r '.id')"
if [ -z "${RELEASE_ID-}" ] || [ "${RELEASE_ID:?}" = 'null' ]; then exit 1; fi