-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force using
esbuild@0.18.20
for both deps
- Loading branch information
1 parent
df3fcfe
commit 7910ab1
Showing
4 changed files
with
473 additions
and
138 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Notify when 'overrides' in '/package.json' might have became outdated | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/package*.json' | ||
|
||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '/.nvmrc' | ||
|
||
- 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 |
Oops, something went wrong.