mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 10:20:16 -06:00
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: [18.x]
|
|
os: [ubuntu-latest, windows-2019, macos-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
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
|