Skip to content

Commit

Permalink
Break-up server tests in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrik Meijer committed Aug 22, 2023
1 parent 23905d0 commit 89397ac
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,17 @@ jobs:
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/plugin
- name: Mocha seeds test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/seeds
- name: Mocha server test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server
- name: Mocha server root test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit ./test/server
- name: Mocha server/api test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/api
- name: Mocha server/middleware test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/middleware
- name: Mocha server/storage test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/storage
- name: Mocha server/util test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/util
- name: Mocha server/webhooks test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/webhooks
- name: Mocha server/worker test
run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/worker

0 comments on commit 89397ac

Please sign in to comment.