From e9ec69ca5c95d9a59900157ae1fdfe3bc830cd0e Mon Sep 17 00:00:00 2001 From: Vishwas Shashidhar Date: Thu, 30 Jan 2020 23:27:55 +0530 Subject: [PATCH] Create electron.yml --- .github/workflows/electron.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/electron.yml diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml new file mode 100644 index 00000000..f3780a4b --- /dev/null +++ b/.github/workflows/electron.yml @@ -0,0 +1,26 @@ +name: Electron CI + +on: [push] + +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