Skip to content

SDA-4300 (Fix issues related to call toast notification) #5947

SDA-4300 (Fix issues related to call toast notification)

SDA-4300 (Fix issues related to call toast notification) #5947

Workflow file for this run

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