Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Dec 6, 2023
1 parent 7f2a009 commit 460ff4d
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 '<details><summary>Installed Python packages (dependency tree)</summary>'
echo -e "\n\`\`\`console"
echo "$ python -m pipdeptree --local-only --exclude=pip,pipdeptree"
Expand All @@ -242,13 +240,11 @@ jobs:
echo "$ npm list --all"
npm list --all
echo -e "\`\`\`\n</details>"
echo '<details><summary>Outdated JavaScript dependencies</summary>'
echo -e "\n\`\`\`console"
echo "$ npm outdated"
cat outdated.md
echo "$ npm outdated --all --long"
npm outdated --all --long || true
echo -e "\`\`\`\n</details>"
} >> $GITHUB_STEP_SUMMARY
# required-checks-pass:
Expand Down

0 comments on commit 460ff4d

Please sign in to comment.