Add simple CI

This commit is contained in:
Matthias 2020-05-18 20:28:24 +02:00
parent 04be59c62d
commit 76fd8cf69e

33
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Freqtrade CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-18.04]
steps:
- uses: actions/checkout@v2
- name: npm install
uses: jaid/action-npm-install@v1.2.1
packageManager: npm
- name: run lint
run: |
npm run lint
# - name: Prettify code
# uses: creyD/prettier_action@v2.2
# with:
# dry: True