mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
Add simple CI
This commit is contained in:
parent
04be59c62d
commit
76fd8cf69e
33
.github/workflows/ci.yml
vendored
Normal file
33
.github/workflows/ci.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user