Bump @types/node from 22.7.4 to 22.8.2 #784
Workflow file for this run
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 'overrides' in '/package.json' might have became outdated | |
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 override targets | |
run: |2 | |
override_targets=$(node -p "Object.keys(require('./package.json').overrides).join('\n')") | |
target_none=$RANDOM | |
failed_target=$target_none | |
for target in $override_targets; do | |
if ! npm ls "$target"; then | |
failed_target=$target | |
break | |
fi | |
done | |
if [ "$failed_target" != "$target_none" ]; then | |
echo ⛔️ Override target "$failed_target" is not found as a dependency | |
exit 1 | |
else | |
echo ✅ All override targets found | |
fi |