Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: npm run test:unit ${{ matrix.os.coverage }}
- name: Upload unit test results
if: ${{ failure() && steps.test_unit.outcome == 'failure' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: unit-test-results-${{matrix.os.name}}-${{github.sha}}
path: build/test-report/unit
Expand All @@ -92,7 +92,7 @@ jobs:
run: npm run test:integration ${{ matrix.os.coverage }}
- name: Upload integration test results
if: ${{ failure() && steps.test_integration.outcome == 'failure' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: integration-test-results-${{matrix.os.name}}-${{github.sha}}
path: build/test-report/integration
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Build docs
run: npm run docs
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: documentation-${{github.sha}}
path: build/docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
if: always()
- name: Upload e2e test results
if: ${{ failure() && steps.test_e2e.outcome == 'failure' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: e2e-${{matrix.browser}}-test-results-${{matrix.os}}-${{github.sha}}
path: build/test-report/e2e
4 changes: 2 additions & 2 deletions .github/workflows/test-npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Build npm package
run: npm pack
- name: Upload npm package
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bpmn-visualization-npm-package-${{github.sha}}
path: bpmn-visualization-*.tgz
Expand All @@ -67,7 +67,7 @@ jobs:
run: npm run test:bundles:verbose
- name: Upload bundles test results
if: ${{ failure() && steps.test_bundles.outcome == 'failure' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bundles-test-results-${{github.sha}}
path: build/test-report/bundles
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: npm run test:perf
- name: Upload test results
if: success()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: perf-test-results-${{matrix.os}}-${{github.sha}}
path: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set ARTIFACT_NAME
run: echo "ARTIFACT_NAME=demo-${{github.sha}}" >> $GITHUB_ENV
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}
path: build/demo/dev/public
Expand Down