Electron19 #144
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
# enable next line to limit branches to run | |
branches: [ "master" ] | |
pull_request: | |
# enable next line to limit branches to run | |
# branches: [ "master" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
os: [windows-2022, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
# not needed currently, but leaving here for future use | |
# - uses: actions/setup-python@v4 | |
# with: | |
# python-version: '2.7.18' | |
- name: boost | |
if: startsWith(matrix.os,'ubuntu') | |
run: sudo apt-get update && sudo apt-get install -yq libboost-dev | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
npm install | |
npm run build | |
- name: Package | |
run: | | |
npm run dist |