Skip to content

Commit

Permalink
Fix CI files
Browse files Browse the repository at this point in the history
- Fix shebang in pre-commit
- Add build to pre-commit
- Add build files to ignore files
  • Loading branch information
kamarmack authored Apr 23, 2024
1 parent aef585b commit 4632488
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,7 @@ coverage/

# Local Resources
___local_resources/

# Build
**.js
**.d.ts
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,7 @@ coverage/

# Local Resources
___local_resources/

# Build
**.js
**.d.ts
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/bash
. "$(dirname -- "$0")/_/husky.sh"

npm run format && npm run lint && git add . && npm run test
npm run format && npm run lint && git add . && npm run build && npm run test
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,7 @@ coverage/

# Local Resources
___local_resources/

# Build
**.js
**.d.ts

0 comments on commit 4632488

Please sign in to comment.