run tests in parallel in CI

This commit is contained in:
rebuilt 2022-08-20 15:09:15 -07:00
parent d89a207c31
commit f9ff500f03
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ jobs:
- name: Create DB
run: bundle exec rake db:test:prepare
- name: Run tests
run: bundle exec rake
run: bundle exec rake parallel:spec
- name: Install javascript dependencies
run: yarn install
- name: Run javascript tests

View file

@ -4,4 +4,4 @@ set -eux
git rev-parse --show-toplevel
bundle exec rake && yarn test && git push
bundle exec rake parallel:spec && yarn test && git push