Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ jobs:
git clean -fdX # Remove untracked files and directories
git gc --prune=now # Garbage collect and prune unreachable objects

echo "Installing ESLint dependencies..."
npm install --save-dev eslint @eslint/js globals

if [ ! -f "eslint.config.cjs" ]; then
echo "Creating default ESLint config..."
cat <<EOL > eslint.config.cjs
Expand Down Expand Up @@ -186,6 +189,9 @@ jobs:
git clean -fdX # Remove untracked files and directories
git gc --prune=now # Garbage collect and prune unreachable objects

echo "Installing ESLint dependencies..."
npm install --save-dev eslint @eslint/js globals

if [ ! -f "eslint.config.cjs" ]; then
echo "Creating default ESLint config..."
cat <<EOL > eslint.config.cjs
Expand Down Expand Up @@ -276,6 +282,9 @@ jobs:
git clean -fdX # Remove untracked files and directories
git gc --prune=now # Garbage collect and prune unreachable objects

echo "Installing ESLint dependencies..."
npm install --save-dev eslint @eslint/js globals

if [ ! -f "eslint.config.cjs" ]; then
echo "Creating default ESLint config..."
cat <<EOL > eslint.config.cjs
Expand Down