From 460ff4deeb2c08872c311d58da21e128fc0e4f87 Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Wed, 6 Dec 2023 15:25:20 +0100 Subject: [PATCH] ci --- .github/workflows/ci.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) 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: