diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 94267a1ffc..de07b9ea8b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -219,14 +219,12 @@ jobs:
node-version: 18
cache: npm
- run: npm install --dev
-
- - run: npm outdated > outdated.md
- continue-on-error: true
-
+ # - run: npm outdated --all --long > outdated.md
+ # continue-on-error: true
- name: Write info to step summary
run: |
{
- echo -e "# ✓ All optional dependency groups successfully installed in combination\n\n"
+ echo -e "# ✓ All dependency groups successfully installed in combination\n\n"
echo 'Installed Python packages (dependency tree)
'
echo -e "\n\`\`\`console"
echo "$ python -m pipdeptree --local-only --exclude=pip,pipdeptree"
@@ -242,13 +240,11 @@ jobs:
echo "$ npm list --all"
npm list --all
echo -e "\`\`\`\n "
-
echo 'Outdated JavaScript dependencies
'
echo -e "\n\`\`\`console"
- echo "$ npm outdated"
- cat outdated.md
+ echo "$ npm outdated --all --long"
+ npm outdated --all --long || true
echo -e "\`\`\`\n "
-
} >> $GITHUB_STEP_SUMMARY
# required-checks-pass: