mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-05 13:45:25 -06:00
7122a8e926
Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>
27 lines
550 B
YAML
27 lines
550 B
YAML
name: Continuous Integration
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
os: [ubuntu-latest, windows-latest, 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
|
|
- run: npm install
|
|
- run: npm test
|
|
env:
|
|
CI: true
|
|
ELECTRON_QA: true
|