Skip to content

Commit

Permalink
Merge branch 'Expensify:main' into new-places-api-support
Browse files Browse the repository at this point in the history
  • Loading branch information
rojiphil authored Aug 11, 2024
2 parents 6425853 + 93dc1c9 commit 4836de6
Show file tree
Hide file tree
Showing 455 changed files with 10,216 additions and 11,694 deletions.
1 change: 1 addition & 0 deletions .github/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ module.exports = {
'no-await-in-loop': 'off',
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
'no-continue': 'off',
'no-restricted-imports': 'off',
},
};
1 change: 1 addition & 0 deletions .github/actions/javascript/authorChecklist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17017,6 +17017,7 @@ const CONST = {
DEPLOY_BLOCKER: 'DeployBlockerCash',
INTERNAL_QA: 'InternalQA',
HELP_WANTED: 'Help Wanted',
CP_STAGING: 'CP Staging',
},
ACTIONS: {
CREATED: 'created',
Expand Down
1 change: 1 addition & 0 deletions .github/actions/javascript/awaitStagingDeploys/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12258,6 +12258,7 @@ const CONST = {
DEPLOY_BLOCKER: 'DeployBlockerCash',
INTERNAL_QA: 'InternalQA',
HELP_WANTED: 'Help Wanted',
CP_STAGING: 'CP Staging',
},
ACTIONS: {
CREATED: 'created',
Expand Down
1 change: 1 addition & 0 deletions .github/actions/javascript/checkDeployBlockers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11541,6 +11541,7 @@ const CONST = {
DEPLOY_BLOCKER: 'DeployBlockerCash',
INTERNAL_QA: 'InternalQA',
HELP_WANTED: 'Help Wanted',
CP_STAGING: 'CP Staging',
},
ACTIONS: {
CREATED: 'created',
Expand Down
12 changes: 12 additions & 0 deletions .github/actions/javascript/checkReactCompiler/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Check React compiler'
description: 'Compares two lists of compiled files and fails a job if previously successfully compiled files are no longer compiled successfully'
inputs:
OLD_LIST:
description: List of compiled files from the previous commit
required: true
NEW_LIST:
description: List of compiled files from the current commit
required: true
runs:
using: 'node20'
main: 'index.js'
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/* eslint-disable @typescript-eslint/naming-convention */
import * as core from '@actions/core';

type ReactCompilerOutput = {
success: string[];
failure: string[];
};

const run = function (): Promise<void> {
const oldList = JSON.parse(core.getInput('OLD_LIST', {required: true})) as ReactCompilerOutput;
const newList = JSON.parse(core.getInput('NEW_LIST', {required: true})) as ReactCompilerOutput;

const errors: string[] = [];

oldList.success.forEach((file) => {
if (newList.success.includes(file) || !newList.failure.includes(file)) {
return;
}

errors.push(file);
});

if (errors.length > 0) {
errors.forEach((error) => console.error(error));
throw new Error(
'Some files could be compiled with react-compiler before successfully, but now they can not be compiled. Check https://github.com/Expensify/App/blob/main/contributingGuides/REACT_COMPILER.md documentation to see how you can fix this.',
);
}

return Promise.resolve();
};

if (require.main === module) {
run();
}

export default run;
Loading

0 comments on commit 4836de6

Please sign in to comment.