Split CI test steps

This commit is contained in:
dapplion 2020-11-25 11:41:28 +00:00
parent ec859a1c32
commit 507ed94995
1 changed files with 10 additions and 2 deletions

View File

@ -18,7 +18,15 @@ jobs:
run: yarn check-types
- name: Lint
run: yarn lint
- name: Tests
run: yarn test
- name: Test build
run: yarn build
- name: Unit tests
run: yarn test:unit
- name: Spec tests
run: yarn test:spec
- name: Web tests
run: yarn test:web
- name: Benchmark
run: yarn benchmark