0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Updated pull request template

no issue

- adds `yarn test-all` for running the full test-suite and documents
  this in the PR template
This commit is contained in:
Daniel Lockyer 2020-04-30 08:26:17 +01:00
parent 4fcc31015b
commit f3bf2237e6
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,6 @@ Please include a description of your change & check your PR against this list, t
- [ ] There's a clear use-case for this code change
- [ ] Commit message has a short title & references relevant issues
- [ ] The build will pass (run `yarn test` and `yarn lint`)
- [ ] The build will pass (run `yarn lint` and `yarn test-all`)
More info can be found by clicking the "guidelines for contributing" link above.

View file

@ -24,6 +24,7 @@
"start": "node index",
"dev": "DEBUG=ghost:* grunt dev",
"test": "grunt validate",
"test-all": "grunt test-all --verbose",
"ci": "grunt validate --verbose",
"ci:regression": "grunt test-regression --verbose",
"setup": "yarn install && knex-migrator init && grunt symlink && grunt init || true",