Skip to content

Commit 9f835f0

Browse files
authored
Move Build Check to Github (#158)
- Move Build Check to Native Github
1 parent c4b579b commit 9f835f0

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Copyright 2020 The EME Authors
2+
3+
name: Build_Check
4+
on: [push]
5+
6+
env:
7+
BUILD_TYPE: Debug
8+
9+
jobs:
10+
build:
11+
name: Build_Check
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Prepare Node.js
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: 10
19+
- name: Install Dependencies
20+
run: |
21+
yarn install
22+
- name: Build App
23+
run: |
24+
yarn build
25+
- name: Build
26+
env:
27+
GH_TOKEN: ${{ secrets.github_token }}
28+
run: |
29+
yarn linux

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EME [![version](https://img.shields.io/github/release/egoist/eme.svg?style=flat-square)](https://github.com/egoist/eme/releases) [![downloads](https://img.shields.io/github/downloads/egoist/eme/total.svg?style=flat-square)](https://github.com/egoist/eme/releases) [![downloads latest](https://img.shields.io/github/downloads/egoist/eme/latest/total.svg?style=flat-square)](https://github.com/egoist/eme/releases/latest) [![build](https://img.shields.io/circleci/project/egoist/eme/dev.svg?style=flat-square)](https://circleci.com/gh/egoist/eme) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat-square)](#donate)
1+
# EME [![version](https://img.shields.io/github/release/egoist/eme.svg?style=flat-square)](https://github.com/egoist/eme/releases) [![downloads](https://img.shields.io/github/downloads/egoist/eme/total.svg?style=flat-square)](https://github.com/egoist/eme/releases) [![downloads latest](https://img.shields.io/github/downloads/egoist/eme/latest/total.svg?style=flat-square)](https://github.com/egoist/eme/releases/latest) [![build](https://github.com/egoist/eme/workflows/Build_Check/badge.svg)](https://circleci.com/gh/egoist/eme) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat-square)](#donate)
22

33
![preview](/media/preview.png)
44

circle.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"css-loader": "^0.23.1",
5050
"devtron": "^1.2.1",
5151
"electron": "^2.0.18",
52-
"electron-builder": "^20.13.4",
52+
"electron-builder": "^22.7.0",
5353
"electron-builder-squirrel-windows": "^11.6.1",
5454
"electron-devtools-installer": "^2.0.0",
5555
"electron-packager": "^11.2.1",

0 commit comments

Comments
 (0)