Create gentest-validate script to validate test signatures (#1504)

Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1504

I aim to consume this via a github action or workflow. Separating out the CI configuration from the actual script. We could and should maybe change this script to take in arguments for the test dirs so it is more configurable, but getting the barebones down right now.

Reviewed By: NickGerleman

Differential Revision: D51999865

fbshipit-source-id: 5792c6eec5692943518fecefc6226d784c6f0ad8
This commit is contained in:
Joe Vilches
2023-12-14 11:48:22 -08:00
committed by Facebook GitHub Bot
parent 4743040d62
commit 06c792a407
3 changed files with 44 additions and 3 deletions

View File

@@ -6,7 +6,8 @@
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "yarn workspaces run tsc",
"gentest": "yarn workspace gentest run gentest"
"gentest": "yarn workspace gentest run gentest",
"gentest-validate": "yarn workspace gentest run gentest-validate"
},
"workspaces": [
"javascript",
@@ -16,7 +17,6 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-register-esm": "^1.2.5",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.7",