-
Notifications
You must be signed in to change notification settings - Fork 64
138 lines (112 loc) · 3.86 KB
/
release.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
name: Release
env:
CI: "true"
on:
push:
branches:
- master
paths:
- .github/workflows/*.yml
- "cases/*.ts"
- "*.ts"
- package.json
- package-lock.json
- bun.lockb
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:
- 16.x
- 18.x
- 19.x
- 20.x
- 21.x
- 22.x
- 23.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@v4
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
## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action
- name: push
uses: github-actions-x/[email protected]
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
commit-message: 'feat: ${{ matrix.node-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16
build-bun:
name: "Bun ${{ matrix.bun-version }}"
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
bun-version:
- 1.1.36
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
## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action
- name: push
uses: github-actions-x/[email protected]
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
commit-message: 'feat: ${{ matrix.bun-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16