File tree Expand file tree Collapse file tree 3 files changed +62
-31
lines changed
Expand file tree Collapse file tree 3 files changed +62
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+
15+ - name : Setup Node.js
16+ uses : actions/setup-node@v4
17+ with :
18+ node-version : ' 20'
19+ cache : ' npm'
20+
21+ - name : Install dependencies
22+ run : npm ci
23+
24+ - name : Lint
25+ run : npm run lint
26+
27+ build :
28+ runs-on : ubuntu-latest
29+ steps :
30+ - uses : actions/checkout@v4
31+
32+ - name : Setup Node.js
33+ uses : actions/setup-node@v4
34+ with :
35+ node-version : ' 20'
36+ cache : ' npm'
37+
38+ - name : Install dependencies
39+ run : npm ci
40+
41+ - name : Build
42+ run : npm run build
43+
44+ build-electron :
45+ runs-on : ubuntu-latest
46+ steps :
47+ - uses : actions/checkout@v4
48+
49+ - name : Setup Node.js
50+ uses : actions/setup-node@v4
51+ with :
52+ node-version : ' 20'
53+ cache : ' npm'
54+
55+ - name : Install dependencies
56+ run : npm ci
57+
58+ - name : Build
59+ run : npm run build
60+
61+ - name : Make
62+ run : npm run make
Original file line number Diff line number Diff line change 88 "lint" : " tslint -c tslint.json 'src/**/*.ts'" ,
99 "start" : " node fuse.dev" ,
1010 "start:electron" : " electron-forge start --inspect-electron" ,
11- "deploy" : " now --public --token=$NOW_TOKEN --prod -c && now-pipeline-prune" ,
1211 "package" : " electron-forge package" ,
1312 "make" : " electron-forge make"
1413 },
4140 "electron-squirrel-startup" : " ^1.0.1" ,
4241 "esbuild" : " ^0.27.2" ,
4342 "http-proxy-middleware" : " ^3.0.5" ,
44- "now" : " latest" ,
45- "now-pipeline" : " latest" ,
4643 "serve" : " latest" ,
4744 "tslint" : " ^6.1.3" ,
4845 "typescript" : " ^5.9.3"
You can’t perform that action at this time.
0 commit comments