This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/.github/workflows/Electron.yml

29 lines
749 B
YAML
Raw Normal View History

2021-06-30 10:09:24 +02:00
name: Electron Build
on:
push:
2021-08-28 16:05:02 +02:00
branches: [master, dev]
2021-06-30 10:09:24 +02:00
pull_request:
2021-08-28 16:05:02 +02:00
branches: [master, dev]
2021-06-30 10:09:24 +02:00
jobs:
build:
runs-on: windows-2019
2021-06-30 10:09:24 +02:00
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
2021-08-28 04:02:37 +02:00
uses: actions/setup-node@v2
2021-06-30 10:09:24 +02:00
with:
node-version: ${{ matrix.node-version }}
2021-08-27 17:15:10 +02:00
- name: Fix node-gyp
run: npm config set msbuild_path "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe"
2021-06-30 10:09:24 +02:00
- name: Install dependencies
2022-04-09 20:07:19 +02:00
run: cd ./modules/dashboard && yarn --network-timeout 1000000000
2021-06-30 10:09:24 +02:00
- name: Build
2022-04-09 20:07:19 +02:00
run: cd ./modules/dashboard && yarn build