separate checks

This commit is contained in:
Aryan Goharzad
2023-01-30 15:44:20 -05:00
parent b86fdb9da1
commit c5a4e9d07d
+10 -2
View File
@@ -7,7 +7,7 @@ on:
jobs:
linting:
name: Run linters
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
@@ -21,10 +21,18 @@ jobs:
prettier: true
- name: Lint check
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
run: yarn tsc
testing:
name: Run tests
name: Tests
runs-on: ubuntu-latest
steps:
- name: Install node 18