Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: bun run build

- name: Save build folder
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build
if-no-files-found: error
Expand Down Expand Up @@ -110,15 +110,15 @@ jobs:

- name: Upload Cypress Screenshots
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cypress-screenshots-${{ matrix.browser }}
path: cypress/screenshots
if-no-files-found: ignore

- name: Upload Cypress Videos
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cypress-videos-${{ matrix.browser }}
path: cypress/videos
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: bunx playwright install --with-deps

- name: Save build folder
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-playwright
if-no-files-found: error
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ matrix.project }}
path: playwright-report/
Expand Down
Loading