Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Fix github action running endlessly (#43)
Browse files Browse the repository at this point in the history
* Exclude .git repos from packages searched

* add dependabot fixes to see if it works
  • Loading branch information
rejas committed Oct 26, 2023
1 parent 3ed4d44 commit 7d1591e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions javascript/packages/eslint-config-nebenan-base/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions javascript/packages/eslint-config-nebenan/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/for-each-package
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
PACKAGES=`find . -iname packages -not -path "*/node_modules/*" -exec find {} -maxdepth 1 -mindepth 1 \;`
PACKAGES=`find . -iname packages -not -path "*/node_modules/*" -not -path "*/.git/*" -exec find {} -maxdepth 1 -mindepth 1 \;`
EXIT_STATUS=0

for PACKAGE in $PACKAGES
Expand Down

0 comments on commit 7d1591e

Please sign in to comment.