trying to fix CI
Some checks failed
Main Workflow / Test and Build (18.x) (push) Failing after 3m33s
Main Workflow / Test and Build (20.x) (push) Successful in 2m9s
Main Workflow / Security Audit (push) Successful in 1m44s
Main Workflow / Build Release Artifacts (push) Has been skipped
Main Workflow / Code Quality Check (push) Failing after 2m40s
Main Workflow / Notification (push) Failing after 1m2s

This commit is contained in:
2025-07-23 06:08:57 +00:00
parent 363b284be8
commit 0d441e8858

View File

@ -42,9 +42,10 @@ jobs:
run: npm test -- --coverage --coverageReporters=lcov run: npm test -- --coverage --coverageReporters=lcov
- name: Upload coverage reports - name: Upload coverage reports
uses: https://github.com/actions/upload-artifact@v3 uses: https://github.com/actions/upload-artifact@v4
if: matrix.node-version == '18.x' if: matrix.node-version == '18.x'
with: with:
github-server-url: https://gitea.p-lao.com
name: coverage-reports name: coverage-reports
path: coverage/ path: coverage/
retention-days: 30 retention-days: 30
@ -116,8 +117,9 @@ jobs:
cd .. cd ..
- name: Upload build artifacts - name: Upload build artifacts
uses: https://github.com/actions/upload-artifact@v3 uses: https://github.com/actions/upload-artifact@v4
with: with:
github-server-url: https://gitea.p-lao.com
name: release-artifacts name: release-artifacts
path: | path: |
drawio-mcp-server-${{ github.sha }}.tar.gz drawio-mcp-server-${{ github.sha }}.tar.gz
@ -151,9 +153,10 @@ jobs:
continue-on-error: true continue-on-error: true
- name: Upload lint results - name: Upload lint results
uses: https://github.com/actions/upload-artifact@v3 uses: https://github.com/actions/upload-artifact@v4
if: always() if: always()
with: with:
github-server-url: https://gitea.p-lao.com
name: lint-results name: lint-results
path: lint-results.json path: lint-results.json
retention-days: 7 retention-days: 7