File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : npm
4+ directory : /
5+ schedule :
6+ interval : weekly
7+ day : monday
8+ time : 06:00
9+ reviewers :
10+ - cloudnode-pro/development
Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ jobs :
10+ build :
11+ name : Build
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout repository
15+ uses : actions/checkout@v4
16+
17+ - name : Setup Node.js
18+ uses : actions/setup-node@v4
19+ with :
20+ node-version : 20
21+ registry-url : https://registry.npmjs.org/
22+ cache : npm
23+
24+ - name : Install latest NPM
25+ run : npm i -g npm@latest
26+
27+ - name : Install dependencies
28+ run : npm ci
29+
30+ - name : Build
31+ run : npm run build
You can’t perform that action at this time.
0 commit comments