mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2025-12-19 05:37:43 +00:00
* Implement initial Cypress testing configuration * Add docs on cypress for testing * Cypress cache for GitHub actions
15 lines
176 B
Bash
Executable File
15 lines
176 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# lint, prettier etc...
|
|
npx lint-staged
|
|
|
|
# run tests
|
|
# npm run test
|
|
|
|
# run build -- tsc
|
|
# npm run build
|
|
|
|
# run tsc
|
|
npx tsc
|