| Derick Montague | bf2131f | 2020-05-29 11:21:36 -0500 | [diff] [blame] | 1 | # Run GUI Linting and Formatting as part of the CI Build process |
| 2 | # | ||||
| 3 | # This is a short term solution. The long term solution to will be to | ||||
| 4 | # add much of this to the build script. | ||||
| 5 | # | ||||
| 6 | |||||
| 7 | set -e | ||||
| 8 | |||||
| 9 | npm ci | ||||
| 10 | npm run lint | ||||
| 11 | git --no-pager diff --exit-code | ||||