separate checks
This commit is contained in:
@@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
linting:
|
linting:
|
||||||
name: Run linters
|
name: Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Git repository
|
- name: Check out Git repository
|
||||||
@@ -21,10 +21,18 @@ jobs:
|
|||||||
prettier: true
|
prettier: true
|
||||||
- name: Lint check
|
- name: Lint check
|
||||||
run: yarn lint
|
run: yarn lint
|
||||||
|
typecheck:
|
||||||
|
name: Type Check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out Git repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Yarn install
|
||||||
|
run: yarn
|
||||||
- name: Type check
|
- name: Type check
|
||||||
run: yarn tsc
|
run: yarn tsc
|
||||||
testing:
|
testing:
|
||||||
name: Run tests
|
name: Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install node 18
|
- name: Install node 18
|
||||||
|
|||||||
Reference in New Issue
Block a user