Skip to content
Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: playwright-report
path: playwright-report/
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
-x "test-results/*"

- name: Upload extension package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: buzzchat-extension
path: dist/buzzchat-extension.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: npm test

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: playwright-report
Expand All @@ -75,7 +75,7 @@ jobs:
run: npm run build:prod

- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: extension-build
path: dist-chrome/
Expand Down
Loading