[repo] ci: run lint and typechecks on all branches
This commit is contained in:
parent
43d628df1f
commit
eed4264aed
|
|
@ -1,11 +1,13 @@
|
|||
name: Lint
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches: [main]
|
||||
branches:
|
||||
- '**'
|
||||
jobs:
|
||||
test:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
name: Typecheck
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches: [main]
|
||||
branches:
|
||||
- '**'
|
||||
jobs:
|
||||
typecheck:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in New Issue