File tree Expand file tree Collapse file tree 2 files changed +37
-25
lines changed Expand file tree Collapse file tree 2 files changed +37
-25
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ env :
12+ NODE_BUILD_CMD : npx --no-install prebuild -t 10.12.0 -t 12.13.0 --strip
13+ ELECTRON_BUILD_CMD : npx --no-install prebuild -r electron -t 3.0.0 -t 4.0.0 -t 4.0.4 -t 5.0.0 --strip
14+
15+ jobs :
16+
17+ test :
18+ strategy :
19+ matrix :
20+ os :
21+ - windows-latest
22+ node :
23+ - 10
24+ fail-fast : false
25+ name : Testing Node ${{ matrix.node }} on ${{ matrix.os }}
26+ runs-on : ${{ matrix.os }}
27+ steps :
28+ - uses : actions/checkout@v3
29+ with :
30+ submodules : true
31+ fetch-depth : 0
32+ - uses : actions/setup-node@v3
33+ with :
34+ node-version : ${{ matrix.node }}
35+
36+ - run : npm install
37+ - run : npm test
You can’t perform that action at this time.
0 commit comments