generated from jeswr/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 5
136 lines (121 loc) · 3.59 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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist
test:
needs: build
strategy:
matrix:
node-version: [16.x, 18.x, 19.x, 20.x]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- run: npm test
benchmark:
needs: build
strategy:
matrix:
node-version: [ 20.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Benchmarking Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Run benchmark
run: npm run perf
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: EYE JS Benchmark
tool: 'benchmarkjs'
output-file-path: perf/output.txt
github-token: ${{ secrets.GH_TOKEN }}
comment-on-alert: ${{ ! contains(github.head_ref, 'dependabot/npm_and_yarn/') }}
alert-comment-cc-users: '@jeswr'
alert-threshold: "110%"
fail-threshold: "125%"
gh-pages-branch: pages
auto-push: ${{ github.ref == 'refs/heads/main' }}
save-data-file: ${{ github.ref == 'refs/heads/main' }}
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- name: npm install and lint
run: |
npm ci
npm run-script lint
release:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [ eslint, test, benchmark ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm ci
- uses: actions/download-artifact@v3
with:
name: dist
path: dist
- run: mkdir ./bundle
- name: "Create Bundle"
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
version=$(npx semantic-release --dry-run | grep -oP 'The next release version is \K[0-9]+\.[0-9]+\.[0-9]+') || true
if [ $version ]
then
npm run bundle:webpack -- --name=v$version
npm run bundle:latest -- --name=v$version
cp -r ./examples/prebuilt/ bundle/example/
fi
- run: npm test
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release