Split CI test steps
This commit is contained in:
parent
ec859a1c32
commit
507ed94995
|
@ -18,7 +18,15 @@ jobs:
|
||||||
run: yarn check-types
|
run: yarn check-types
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: yarn lint
|
run: yarn lint
|
||||||
- name: Tests
|
- name: Test build
|
||||||
run: yarn test
|
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
|
- name: Benchmark
|
||||||
run: yarn benchmark
|
run: yarn benchmark
|
||||||
|
|
Reference in New Issue