Add release workflow and prepare for v1

This commit is contained in:
CrazyMax
2019-10-04 16:23:35 +02:00
committed by CrazyMax
parent 1cdd780638
commit a3e2544221
5 changed files with 104 additions and 6 deletions
+23
View File
@@ -0,0 +1,23 @@
name: lint
on:
pull_request:
branches:
- master
- releases/*
paths:
- src/*
jobs:
lint:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v1
-
name: Setup TS
run: npm install tslint typescript -g
-
name: Lint check
run: tslint './src/*.ts'