-
Notifications
You must be signed in to change notification settings - Fork 87
175 lines (140 loc) · 4.29 KB
/
release.yml
File metadata and controls
175 lines (140 loc) · 4.29 KB
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
name: Release
env:
CI: "true"
on:
push:
branches:
- master
paths:
- .github/workflows/*.yml
- "cases/*.ts"
- "*.ts"
- package.json
- package-lock.json
- bun.lock
jobs:
build:
name: "Node ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
# benchmarked node versions must be kept in sync with:
# - node-version matrix in pr.yml
# - NODE_VERSIONS in app.tsx
# - NODE_VERSION_FOR_PREVIEW in main.ts
node-version:
- 20.x
- 21.x
- 22.x
- 23.x
- 24.x
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: lint
run: npm run lint
- name: test build
run: npm run test:build
- name: npm test
run: npm t
- name: generate benchmarks with node
run: ./start.sh NODE
- name: push
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
message: 'feat: ${{ matrix.node-version }} adds auto-generated benchmarks and bar graph'
push: true
fetch: true
pull: '--rebase --autostash'
build-bun:
name: "Bun ${{ matrix.bun-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
bun-version:
- 1.2.12
steps:
- uses: actions/checkout@v4
- name: Use Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun-version }}
- name: Install
run: bun install
- name: Lint
run: bun run lint
- name: Test build
run: bun run test:build
- name: Test
run: bun run test
- name: generate benchmarks with bun
run: ./start.sh BUN
- name: push
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
message: 'feat: ${{ matrix.bun-version }} adds auto-generated benchmarks and bar graph'
push: true
fetch: true
pull: '--rebase --autostash'
build-deno:
name: "Deno ${{ matrix.deno-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
deno-version:
- 2.1.9
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
- name: Use Deno ${{ matrix.deno-version }}
uses: denoland/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}
- name: Install
run: npm ci
- name: Lint
run: deno run lint
- name: Test build
run: deno task test:build
- name: Test
run: deno task test
- name: generate benchmarks with deno
run: ./start.sh DENO
- name: push
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
message: 'feat: ${{ matrix.deno-version }} adds auto-generated benchmarks and bar graph'
push: true
fetch: true
pull: '--rebase --autostash'