-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (99 loc) · 2.73 KB
/
ci.yml
File metadata and controls
116 lines (99 loc) · 2.73 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
name: CI
on:
pull_request:
push:
branches: [main]
tags: ['v*']
workflow_dispatch:
jobs:
quality:
name: typecheck / lint / format / test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Test
run: npm test
package:
name: package (${{ matrix.os }})
needs: quality
if: github.ref_type != 'tag'
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
target: win
artifact: mongobench-windows
- os: ubuntu-latest
target: linux
artifact: mongobench-linux
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
# `electron-vite build` emits the bundles into `out/`; electron-builder
# then packages them into an NSIS installer (Windows) or AppImage
# (Linux). No code signing — artifacts are for direct download.
- name: Build distributable
run: npm run dist:${{ matrix.target }}
env:
GH_TOKEN: ''
- name: Upload distributable
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: |
dist/*.exe
dist/*.AppImage
if-no-files-found: error
retention-days: 14
release:
name: release (${{ matrix.os }})
needs: quality
if: github.ref_type == 'tag'
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
target: win
- os: ubuntu-latest
target: linux
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
# `--publish always` uploads the installer + latest.yml /
# latest-linux.yml metadata to the GitHub Release matching the tag.
# electron-updater reads latest.yml at runtime to detect new versions.
- name: Build and publish
run: npm run dist:${{ matrix.target }} -- --publish always
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}