Skip to content

Commit 0ef344f

Browse files
committed
Merge remote-tracking branch 'origin' into shravya/bugfix/resourcemangement-3399
2 parents 71fdb26 + b5aeb1f commit 0ef344f

175 files changed

Lines changed: 11316 additions & 31009 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.husky/pre-commit

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
#!/bin/sh
2+
# Load nvm if available
3+
export NVM_DIR="$HOME/.nvm"
4+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
5+
# Use Node 20 if available (or install if needed)
6+
if [ -f .nvmrc ]; then
7+
nvm use 20 2>/dev/null || nvm install 20 && nvm use 20
8+
fi
9+
210
. "$(dirname "$0")/_/husky.sh"
311

412
echo ""

.husky/pre-push

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
#!/bin/sh
2+
# Load nvm if available
3+
export NVM_DIR="$HOME/.nvm"
4+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
5+
# Use Node 20 if available (or install if needed)
6+
if [ -f .nvmrc ]; then
7+
nvm use 20 2>/dev/null || nvm install 20 && nvm use 20
8+
fi
9+
210
. "$(dirname "$0")/_/husky.sh"
311

412
echo "🧪 Running tests before push..."

.stylelintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public/
2+
node_modules/
3+
dist/
4+
build/
5+
coverage/

.stylelintrc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
{
2-
"rules": {
3-
"no-duplicate-selectors": true
4-
}
1+
{
2+
"ignoreFiles": [
3+
"build/**/*.css",
4+
"public/**/*.css",
5+
"node_modules/**/*.css"
6+
],
7+
"rules": {
8+
"no-duplicate-selectors": true
9+
}
510
}

git

Whitespace-only changes.

git_log.txt

2.32 KB
Binary file not shown.

jest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,7 @@ module.exports = {
4747

4848
// Indicates whether each individual test should be reported during the run
4949
verbose: false,
50+
51+
// Increase timeout for tests
52+
testTimeout: 10000,
5053
};

0 commit comments

Comments
 (0)