Skip to content

Commit 19aec14

Browse files
committed
Add nexe build workflow + update package-lock.json
1 parent eadfb37 commit 19aec14

File tree

2 files changed

+35
-19
lines changed

2 files changed

+35
-19
lines changed

.github/workflows/nexe_builds.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: nexe builds
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
strategy:
7+
matrix:
8+
os: [ubuntu-latest]
9+
node:
10+
- 12
11+
- 14
12+
- 15
13+
runs-on: ${{ matrix.os }}
14+
15+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v2
19+
20+
- name: Setup NodeJS
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: ${{ matrix.node }}
24+
25+
- name: Install nexe
26+
run: npm i nexe -g
27+
28+
- name: Install dependencies
29+
run: npm install
30+
31+
- name: Builds
32+
run: |
33+
nexe proxy-login-automator.js -t "linux-x64"
34+
nexe proxy-login-automator.js -t "windows-x64-10.16.0"

package-lock.json

Lines changed: 1 addition & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)