Add Validate TypeScript workflow
This commit is contained in:
parent
9a6af95c92
commit
f94597d78e
14
.github/workflows/validate-typescript.yml
vendored
Normal file
14
.github/workflows/validate-typescript.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user