set github actions

This commit is contained in:
Maxime GRIS
2021-02-13 17:49:39 +01:00
parent e6d0aa6d15
commit edb6f2aa0f
6 changed files with 20401 additions and 2 deletions

53
.github/workflows/macos.yml vendored Normal file
View File

@@ -0,0 +1,53 @@
# This is a basic workflow to help you get started with Actions
name: 'MacOS Build'
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
- github-actions
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
node-version: [10.13.0, 12.x, 14.x, 15.x]
# The type of runner that the job will run on
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm i
- name: Check lint
run: npm run lint
- name: Build the app
run: npm run electron:build