From 2d0a009c7f4aa4c6cc0c7acd58595617999e4939 Mon Sep 17 00:00:00 2001 From: Serhii Marchenko Date: Wed, 11 Sep 2024 15:53:10 +0300 Subject: [PATCH 1/3] chore: upd upload-artifact version --- .github/workflows/cypress.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index d2c10ef..45fce26 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -21,13 +21,13 @@ jobs: install: false browser: chrome - name: Upload video - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-videos path: ./cypress/videos - name: Upload screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots From a529a3814fc67cbda6b821bc4223a15aaec17068 Mon Sep 17 00:00:00 2001 From: Serhii Marchenko Date: Wed, 11 Sep 2024 16:13:35 +0300 Subject: [PATCH 2/3] chore: upd artifact version for all browsers --- .github/workflows/cypress.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 45fce26..c2ff50d 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -52,13 +52,13 @@ jobs: install: false browser: firefox - name: Upload video - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-videos path: ./cypress/videos - name: Upload screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots @@ -82,13 +82,13 @@ jobs: install: false browser: edge - name: Upload video - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-videos path: ./cypress/videos - name: Upload screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: cypress-screenshots @@ -114,13 +114,13 @@ jobs: # install: false # browser: webkit # - name: Upload screenshots - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # if: failure() # with: # name: cypress-screenshots # path: ./cypress/screenshots # - name: Upload video - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # if: failure() # with: # name: cypress-videos From 2b65741eb032926698c82cc435a3543106e301eb Mon Sep 17 00:00:00 2001 From: Serhii Marchenko Date: Wed, 11 Sep 2024 16:15:17 +0300 Subject: [PATCH 3/3] chore: fix warning --- src/components/input-field/InputField.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/components/input-field/InputField.scss b/src/components/input-field/InputField.scss index 27c6f1e..639281d 100644 --- a/src/components/input-field/InputField.scss +++ b/src/components/input-field/InputField.scss @@ -1,10 +1,6 @@ @import '../variables.scss'; .input-field-wrapper { - ::-moz-placeholder { - opacity: 1; - } - display: flex; align-items: center; flex-grow: 1; @@ -14,6 +10,9 @@ height: 32px; border: solid 1px rgba(255, 255, 255, 0.4); border-radius: $roundness-1; + ::-moz-placeholder { + opacity: 1; + } .search-results { display: flex; justify-content: flex-end;