-
Notifications
You must be signed in to change notification settings - Fork 23
283 lines (199 loc) · 6.93 KB
/
nodejs.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
name: Full publish pipeline
on: [push]
jobs:
unicode-atoms:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Check full unicode over atoms
run: |
npm install && npm run make && npm run jest-unicode-atom
unicode-strings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Check full unicode over strings
run: |
npm install && npm run make && npm run jest-unicode-string
unicode-atom-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Check full unicode over atom labels
run: |
npm install && npm run make && npm run jest-unicode-atom-label
unicode-string-labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Check full unicode over string labels
run: |
npm install && npm run make && npm run jest-unicode-string-label
unicode-actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Check full unicode over action statements
run: |
npm install && npm run make && npm run jest-unicode-action
build:
strategy:
matrix:
include:
- node-version: 20.x # fastest, so run first, to error fast
os: ubuntu-latest
- node-version: 20.x # slowest, so run next. sort by slowest from here to get earliest end through parallelism
os: macos-latest
- node-version: 20.x # finish check big-3 on latest current
os: windows-latest
- node-version: 21.x # check newest non-lts too
os: ubuntu-latest
- node-version: 21.x # check newest non-lts too
os: macos-latest
- node-version: 21.x # check newest non-lts too
os: windows-latest
- node-version: 11.x # lastly check just ubuntu on historic node versions because speed, oldest (slowest) first
os: ubuntu-latest
- node-version: 12.x
os: ubuntu-latest
- node-version: 13.x
os: ubuntu-latest
- node-version: 14.x
os: ubuntu-latest
- node-version: 15.x
os: ubuntu-latest
- node-version: 16.x
os: ubuntu-latest
- node-version: 17.x
os: ubuntu-latest
- node-version: 18.x
os: ubuntu-latest
- node-version: 19.x
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install && npm run ci_build
env:
CI: true
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./coverage/spec/lcov.info
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Run the benchmarks
run: |
npm install && npm run benny
verify-version-bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Verify the version was bumped
run: |
npm install
git config --global user.email "[email protected]"
git config --global user.name "John Haugeland through Github Actions"
node ./src/buildjs/verify_version_bump.js
release:
if: (github.event.pusher.name == github.event.repository.owner.name) && (github.ref == 'refs/heads/main')
needs: [build, verify-version-bump, unicode-strings, unicode-atoms, unicode-actions, unicode-atom-labels, unicode-string-labels]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Export tag to envvars
run: |
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
echo "TAG=$TAG" >> $GITHUB_ENV
echo $TAG
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
- name: Push tags
run: git push origin --tags
- name: Create the release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TAG }}
release_name: ${{ env.TAG }}
body_path: CHANGELOG.md
- name: Publish to npm
run: |
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.JSSM_PUBLISH_TOKEN_FOR_GH_CI_CD }}
- name: Tweet notice
run: |
npm install && node ./src/buildjs/tweet.js
env:
JSSM_TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.JSSM_TWITTER_ACCESS_TOKEN_SECRET }}
JSSM_TWITTER_API_ACCESS_TOKEN: ${{ secrets.JSSM_TWITTER_API_ACCESS_TOKEN }}
JSSM_TWITTER_API_KEY: ${{ secrets.JSSM_TWITTER_API_KEY }}
JSSM_TWITTER_API_SECRET: ${{ secrets.JSSM_TWITTER_API_SECRET }}
TW_COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
bump-jssm-viz:
needs: [release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Export tag to envvars
run: |
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
echo "TAG=$TAG" >> $GITHUB_ENV
- name: CURL RPC to jssm-viz action
run: |
curl -X POST "https://api.github.com/repos/StoneCypher/jssm-viz/dispatches" -H 'Accept: application/vnd.github.everest-preview+json' -u ${{ secrets.JSSM_UPGRADE_PERSONAL_ACCESS_TOKEN }} --data '{"event_type": "upgrade_jssm", "client_payload": { "lib_version": "${{ env.TAG }}" }}'
finish:
needs: [bump-jssm-viz]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Results page
run: |
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
echo '### Results!' >> $GITHUB_STEP_SUMMARY
echo "* Published $TAG to NPM" >> $GITHUB_STEP_SUMMARY
echo '* Bumping `jssm-viz`' >> $GITHUB_STEP_SUMMARY
echo ' * which will bump `jssm-viz-cli`' >> $GITHUB_STEP_SUMMARY
echo ' * which will bump `jssm-viz-demo`' >> $GITHUB_STEP_SUMMARY