mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-28 09:51:06 -06:00
4d3455b3a4
* SDA-3733 - Update electron version to 19 * Remove electron-rebuild dependency * Switch to node version 16.13.2 * Remove rebuild script * Bump napi * Use node 16.13.2 * remove @types dependency * Bump node version for build-mac.sh * Bump run-script-os and screen-share-indicator-frame * updated electron and electron-builder * Capture unhandled rejections * Remove swift search * Update to version 19 * Swift Shader is no longer part of 19 builds * Update ci node version * SDA-3733 - Bump electron version to 19.0.2
29 lines
677 B
YAML
29 lines
677 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
os: [ubuntu-latest, windows-2019, macos-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: npm config set package-lock false
|
|
- name: install linux dependency
|
|
if: startsWith(matrix.os,'ubuntu')
|
|
run: sudo apt-get install libxtst-dev
|
|
- run: npm install
|
|
- run: npm test
|
|
env:
|
|
CI: true
|
|
ELECTRON_QA: true
|