-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into distance-transaction-deep-merge
- Loading branch information
Showing
1,122 changed files
with
24,991 additions
and
14,326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,11 @@ jobs: | |
- name: Setup NodeJS | ||
uses: ./.github/actions/composite/setupNode | ||
|
||
- name: Set dummy git credentials | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Test" | ||
- name: Run performance testing script | ||
shell: bash | ||
run: | | ||
|
@@ -27,6 +32,7 @@ jobs: | |
npm install --force | ||
npx reassure --baseline | ||
git switch --force --detach - | ||
git merge --no-commit --allow-unrelated-histories "$BASELINE_BRANCH" -X ours | ||
npm install --force | ||
npx reassure --branch | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"ignoredFiles": [ | ||
"assets/images/empty-state_background-fade-dark.png", // Caused an issue with colour gradients, https://github.com/Expensify/App/issues/30499 | ||
"assets/images/empty-state_background-fade-light.png" | ||
"assets/images/themeDependent/empty-state_background-fade-dark.png", // Caused an issue with colour gradients, https://github.com/Expensify/App/issues/30499 | ||
"assets/images/themeDependent/empty-state_background-fade-light.png" | ||
], | ||
"aggressiveCompression": "false" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
import {create} from '@storybook/theming'; | ||
import colors from '../src/styles/colors'; | ||
import colors from '../src/styles/theme/colors'; | ||
|
||
export default create({ | ||
brandTitle: 'New Expensify UI Docs', | ||
brandImage: 'logomark.svg', | ||
fontBase: 'ExpensifyNeue-Regular', | ||
fontCode: 'monospace', | ||
base: 'dark', | ||
appBg: colors.darkHighlightBackground, | ||
colorPrimary: colors.darkDefaultButton, | ||
appBg: colors.productDark200, | ||
colorPrimary: colors.productDark400, | ||
colorSecondary: colors.green, | ||
appContentBg: colors.darkAppBackground, | ||
textColor: colors.darkPrimaryText, | ||
barTextColor: colors.darkPrimaryText, | ||
appContentBg: colors.productDark100, | ||
textColor: colors.productDark900, | ||
barTextColor: colors.productDark900, | ||
barSelectedColor: colors.green, | ||
barBg: colors.darkAppBackground, | ||
appBorderColor: colors.darkBorders, | ||
inputBg: colors.darkHighlightBackground, | ||
inputBorder: colors.darkBorders, | ||
barBg: colors.productDark100, | ||
appBorderColor: colors.productDark400, | ||
inputBg: colors.productDark200, | ||
inputBorder: colors.productDark400, | ||
appBorderRadius: 8, | ||
inputBorderRadius: 8, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.