Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Expensify/App into fix/37896-compos…
Browse files Browse the repository at this point in the history
…er-not-clearing-on-send
  • Loading branch information
hannojg committed Aug 8, 2024
2 parents 5b27dff + cc4626f commit 910b61c
Show file tree
Hide file tree
Showing 290 changed files with 8,241 additions and 2,171 deletions.
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 910b61c

Please sign in to comment.