Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): update ci versions #930

Merged
merged 1 commit into from
Dec 9, 2024
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
path: automated-tests

- name: Setup Node.js for Uplink Web 🔨
uses: actions/setup-node@v4.0.4
uses: actions/setup-node@v4.1.0
with:
node-version: 20

Expand All @@ -53,7 +53,7 @@ jobs:
working-directory: automated-tests
run: npx playwright test -c playwright.ci.config.ts --project=${{ matrix.project }}

- uses: actions/[email protected].0
- uses: actions/[email protected].3
if: always()
with:
name: playwright-report-${{ matrix.project }}
Expand All @@ -62,7 +62,7 @@ jobs:

- name: Upload Allure results as artifact
if: always()
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
name: allure-results-${{ matrix.project }}
path: automated-tests/allure-results
Expand All @@ -85,13 +85,13 @@ jobs:
image: mcr.microsoft.com/playwright:v1.48.0-jammy
steps:
- name: Download Blob Report from Desktop
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.8
with:
name: playwright-report-desktop-chrome
path: blob-report

- name: Download Blob Report from Mobile
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.8
with:
name: playwright-report-mobile-chrome
path: blob-report
Expand All @@ -101,14 +101,14 @@ jobs:

- name: Upload Merged Report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.4.3
with:
name: playwright-merged-report
path: playwright-report
retention-days: 5

- name: Delete temporary artifacts
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@v5.1.0
with:
name: |
playwright-report-desktop-chrome
Expand All @@ -135,7 +135,7 @@ jobs:
path: gh-pages

- name: Download Merged Report
uses: actions/download-artifact@v4
uses: actions/download-artifact@v4.1.8
with:
name: playwright-merged-report
path: playwright-report
Expand Down
Loading