Merge pull request #316 from vector-im/dbkr/typescript_round_1

Initial round of typescripting
This commit is contained in:
David Baker 2022-05-11 11:50:07 +01:00 committed by GitHub
commit 66aede01dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 383 additions and 38 deletions

View file

@ -1,9 +1,9 @@
name: Lint and format
name: Lint, format & type check
on:
pull_request: {}
jobs:
prettier:
name: Lint and format
name: Lint, format & type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
@ -17,4 +17,6 @@ jobs:
- name: Prettier
run: "yarn run prettier:check"
- name: ESLint
run: "yarn run lint"
run: "yarn run lint:js"
- name: Type check
run: "yarn run lint:types"