Bump eslint-plugin-import from 2.29.1 to 2.31.0 #411
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notify when a new '/packages/**/node_modules' directory appears | |
on: | |
push: | |
paths: | |
- '**/package*.json' | |
- '.github/workflows/**' | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '/.nvmrc' | |
- run: npm ci | |
- name: Find nested 'node_modules' dirs | |
run: |2 | |
directories=$(find packages -type d -name 'node_modules' | tr '\n' ' ') | |
if [ -n "$directories" ]; then | |
echo "::warning title=Dependency hoisting::Found nested 'node_modules' directories: $directories" | |
else | |
echo "::notice title=Dependency hoisting::No nested 'node_modules' directories found." | |
fi |