File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 2727 - run : yarn
2828
2929 - run : yarn test
30+
31+ prebuild :
32+ runs-on : ${{ matrix.os }}
33+ strategy :
34+ fail-fast : false
35+ matrix :
36+ os :
37+ - ubuntu-20.04
38+ - macos-latest
39+ - windows-latest
40+ node_version :
41+ - 14
42+ node_arch :
43+ - x64
44+ include :
45+ - os : windows-latest
46+ node_version : 14
47+ node_arch : x86
48+ steps :
49+ - uses : actions/checkout@v2
50+
51+ - name : Install Node
52+ uses : actions/setup-node@v2
53+ with :
54+ node-version : ${{ matrix.node_version }}
55+ architecture : ${{ matrix.node_arch }}
56+
57+ - name : Install Dependencies and Build
58+ run : yarn
59+
60+ - name : Prebuild
61+ run : yarn run prebuild
62+ env :
63+ ARCH : ${{ matrix.node_arch }}
64+
65+ - name : Upload artifacts
66+ uses : actions/upload-artifact@v2
67+ with :
68+ path : ./prebuilds
You can’t perform that action at this time.
0 commit comments