From 32f77ddfdef3dda185d6dc9d6473802a5cf55b9d Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:27:05 -0400 Subject: [PATCH 01/15] updated color for styles --- src/styles/_color.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 8326d44..0bdfd2f 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -5,7 +5,7 @@ */ --ds-color-text-success: #138000; ---ds-color-text-link: yellow; +--ds-color-text-link: indigo; --ds-color-text-error: #d0421b; --ds-color-text-inverse: #ffffff; --ds-color-text-disabled: #9c9c9c; From 307e323039e968fd11af682a96596b37e01f019c Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:32:46 -0400 Subject: [PATCH 02/15] updated yaml branch on push --- .github/workflows/chromatic.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 4633c77..f7d95f4 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -4,6 +4,7 @@ on: push: branches: - chromatic-setup + - chromatic-setup-test # List of jobs jobs: From 60555b4601801723ed1d7858b25ffaef34f47781 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:35:49 -0400 Subject: [PATCH 03/15] changed to pull request --- .github/workflows/chromatic.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index f7d95f4..df3d606 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -1,10 +1,9 @@ # Workflow name name: 'Chromatic Deployment' on: - push: + pull-request: branches: - chromatic-setup - - chromatic-setup-test # List of jobs jobs: From aa2b0ec18b841f4d8d01c3cc1dd3c9e359e5aaaa Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:36:54 -0400 Subject: [PATCH 04/15] syntax chromatic.yml --- .github/workflows/chromatic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index df3d606..4b755ce 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -1,7 +1,7 @@ # Workflow name name: 'Chromatic Deployment' on: - pull-request: + pull_request: branches: - chromatic-setup From c12bdc4216c1364626f5c8c861436e4e4822c5ec Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:41:59 -0400 Subject: [PATCH 05/15] changed primary color to violet --- src/styles/_color.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 0bdfd2f..737f933 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: #262626; +--ds-color-ui-primary: violet; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From 1eca2585251a1f266a0a55b909dd5fa41cd496ca Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 16:58:52 -0400 Subject: [PATCH 06/15] removed cached modules --- .github/workflows/chromatic.yml | 44 ++++++++++++++++----------------- src/styles/_color.scss | 2 +- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 4b755ce..9c36aa3 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -13,19 +13,19 @@ jobs: # Job steps steps: - uses: actions/checkout@v3 - - name: Cache node modules - id: cache-npm - uses: actions/cache@v3 - env: - cache-name: cache-node-modules - with: - # npm cache files are stored in `~/.npm` on Linux/macOS - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- + # - name: Cache node modules + # id: cache-npm + # uses: actions/cache@v3 + # env: + # cache-name: cache-node-modules + # with: + # # npm cache files are stored in `~/.npm` on Linux/macOS + # path: ~/.npm + # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.os }}-build-${{ env.cache-name }}- + # ${{ runner.os }}-build- + # ${{ runner.os }}- - uses: actions/checkout@v1 - run: yarn #👇 Adds Chromatic as a step in the workflow @@ -40,15 +40,15 @@ jobs: needs: chromatic steps: - uses: actions/checkout@v3 - - name: Get Cached Npm Modules - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- + # - name: Get Cached Npm Modules + # uses: actions/cache@v3 + # with: + # path: ~/.npm + # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + # restore-keys: | + # ${{ runner.os }}-build-${{ env.cache-name }}- + # ${{ runner.os }}-build- + # ${{ runner.os }}- - name: Install modules run: | npm install diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 737f933..ab5ce40 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: violet; +--ds-color-ui-primary: orange; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From d5a7931ec996a5004a1381f2606d1ba603a6b392 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 17:24:24 -0400 Subject: [PATCH 07/15] changed color to yellow --- src/styles/_color.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_color.scss b/src/styles/_color.scss index ab5ce40..2185768 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: orange; +--ds-color-ui-primary: yellow; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From 3c19406afcb89b2dad56bae251bb1fe79341cb09 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 17:30:52 -0400 Subject: [PATCH 08/15] updated color --- src/styles/_color.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 2185768..f06c07b 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: yellow; +--ds-color-ui-primary: blue; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From 87ef1f3bf54a1b32fc4e2f9a9ec681313796e53a Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 17:47:09 -0400 Subject: [PATCH 09/15] updated color --- .github/workflows/chromatic.yml | 1 + src/styles/_color.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 9c36aa3..44aaad5 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -34,6 +34,7 @@ jobs: with: #👇 Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ to obtain it projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} + autoAcceptChanges: false build: runs-on: ubuntu-latest diff --git a/src/styles/_color.scss b/src/styles/_color.scss index f06c07b..1b62a09 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: blue; +--ds-color-ui-primary: red; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From 03a96d44a4ce412698397c65dd681619e2d9c0de Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 18:08:07 -0400 Subject: [PATCH 10/15] updated chromatic.yml to check fetch-depth --- .github/workflows/chromatic.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 44aaad5..7181909 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -13,6 +13,8 @@ jobs: # Job steps steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 # - name: Cache node modules # id: cache-npm # uses: actions/cache@v3 From 37e2fbfabe034ab60df4aec2f365a6dad4c5c035 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 18:17:42 -0400 Subject: [PATCH 11/15] added exitZeroOnChanges --- .github/workflows/chromatic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 7181909..07b9d6b 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -36,7 +36,7 @@ jobs: with: #👇 Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ to obtain it projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} - autoAcceptChanges: false + exitZeroOnChanges: false build: runs-on: ubuntu-latest From a85b19a94f43f0209d8d10a83b932bfdb77217a9 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 18:23:19 -0400 Subject: [PATCH 12/15] updated --- .github/workflows/chromatic.yml | 2 +- src/styles/_color.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 07b9d6b..c52489d 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -36,7 +36,7 @@ jobs: with: #👇 Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ to obtain it projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} - exitZeroOnChanges: false + exitZeroOnChanges: true build: runs-on: ubuntu-latest diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 1b62a09..ab5ce40 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: red; +--ds-color-ui-primary: orange; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From ac1da30a239a8119e231c84ac0a88eaf80997fb3 Mon Sep 17 00:00:00 2001 From: Rafae Date: Mon, 4 Jul 2022 18:30:12 -0400 Subject: [PATCH 13/15] updated color exit-zero-on-changes flag added to chromatic.yaml --- .github/workflows/chromatic.yml | 2 +- src/styles/_color.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index c52489d..07b9d6b 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -36,7 +36,7 @@ jobs: with: #👇 Chromatic projectToken, see https://storybook.js.org/tutorials/intro-to-storybook/react/en/deploy/ to obtain it projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} - exitZeroOnChanges: true + exitZeroOnChanges: false build: runs-on: ubuntu-latest diff --git a/src/styles/_color.scss b/src/styles/_color.scss index ab5ce40..643959c 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: orange; +--ds-color-ui-primary: purple; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626; From f2fbf6bd5c941c83da8dbd467604252f34a64cf4 Mon Sep 17 00:00:00 2001 From: Rafae Date: Tue, 5 Jul 2022 09:33:07 -0400 Subject: [PATCH 14/15] added cache back --- .github/workflows/chromatic.yml | 44 ++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 07b9d6b..161cd89 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -15,19 +15,19 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - # - name: Cache node modules - # id: cache-npm - # uses: actions/cache@v3 - # env: - # cache-name: cache-node-modules - # with: - # # npm cache files are stored in `~/.npm` on Linux/macOS - # path: ~/.npm - # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - # restore-keys: | - # ${{ runner.os }}-build-${{ env.cache-name }}- - # ${{ runner.os }}-build- - # ${{ runner.os }}- + - name: Cache node modules + id: cache-npm + uses: actions/cache@v3 + env: + cache-name: cache-node-modules + with: + # npm cache files are stored in `~/.npm` on Linux/macOS + path: ~/.npm + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- - uses: actions/checkout@v1 - run: yarn #👇 Adds Chromatic as a step in the workflow @@ -43,15 +43,15 @@ jobs: needs: chromatic steps: - uses: actions/checkout@v3 - # - name: Get Cached Npm Modules - # uses: actions/cache@v3 - # with: - # path: ~/.npm - # key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - # restore-keys: | - # ${{ runner.os }}-build-${{ env.cache-name }}- - # ${{ runner.os }}-build- - # ${{ runner.os }}- + - name: Get Cached Npm Modules + uses: actions/cache@v3 + with: + path: ~/.npm + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- - name: Install modules run: | npm install From 1dbcc4a46eff8a32916be771b169d53ea29056bf Mon Sep 17 00:00:00 2001 From: Rafae Date: Tue, 5 Jul 2022 09:48:17 -0400 Subject: [PATCH 15/15] changed color to orange --- src/styles/_color.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/_color.scss b/src/styles/_color.scss index 643959c..ab5ce40 100644 --- a/src/styles/_color.scss +++ b/src/styles/_color.scss @@ -26,7 +26,7 @@ --ds-color-ui-quaternary: #ffffff; --ds-color-ui-tertiary: #ededed; --ds-color-ui-secondary: #828181; ---ds-color-ui-primary: purple; +--ds-color-ui-primary: orange; --ds-color-brand-secondary-darker: #0e0e0e; --ds-color-brand-secondary-dark: #1a1919; --ds-color-brand-secondary-main: #262626;