mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Create build.yml
This commit is contained in:
parent
ce7699bb4c
commit
5eae5a314b
1 changed files with 39 additions and 0 deletions
39
.github/workflows/build.yml
vendored
Normal file
39
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
name: Build
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_on_linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@master
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
- name: install dependencies
|
||||||
|
run: npm install
|
||||||
|
- name: build
|
||||||
|
run: npm run make
|
||||||
|
|
||||||
|
build_on_mac:
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@master
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
- name: install dependencies
|
||||||
|
run: npm install
|
||||||
|
- name: build
|
||||||
|
run: npm run make
|
||||||
|
|
||||||
|
build_on_win:
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@master
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
- name: install dependencies
|
||||||
|
run: npm install
|
||||||
|
- name: build
|
||||||
|
run: npm run make
|
Loading…
Reference in a new issue