Add Validate TypeScript workflow

This commit is contained in:
Marc Rousavy 2021-02-23 11:58:30 +01:00
parent 9a6af95c92
commit f94597d78e

View File

@ -0,0 +1,14 @@
name: Validate TypeScript
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run TypeScript
run: npx tsc
- name: Run ESLint
run: yarn lint
# TODO: Run SwiftLint