Move CI scripts out of CI dir

This commit is contained in:
Marquis Kurt 2019-09-25 17:27:09 -04:00
parent 65e0fea610
commit 298827d13c
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
4 changed files with 0 additions and 89 deletions

View File

@ -1,21 +0,0 @@
name: Build Linux Client
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone source code
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies and build
run: |
npm install
npm run build --if-present
npm run build-desktop-linux

View File

@ -1,21 +0,0 @@
name: Build macOS Client
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- name: Clone source code
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies and build
run: |
npm install
npm run build --if-present
npm run build-desktop-darwin-nosign

View File

@ -1,26 +0,0 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- name: Clone source code
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and build
run: |
npm install
npm run build --if-present
env:
CI: true

View File

@ -1,21 +0,0 @@
name: Build Windows Client
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- name: Clone source code
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies and build
run: |
npm install
npm run build --if-present
npm run build-desktop-win