🔬 chore: Add Circular Dependency Check to backend-review (#2149)

* 🔬 chore: Add Circular Dependency check to `backend-review`

* chore: touch random file for workflow trigger

* chore: workflow step order

* chore: update workflow to create empty auth.json file

* fix: attempt empty auth.json creation

* chore: add test_bundle ESLint ignore pattern
This commit is contained in:
Danny Avila 2024-03-20 12:15:42 -04:00 committed by GitHub
parent 4f17d97eb2
commit 9bab595204
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 1 deletions

View file

@ -6,7 +6,7 @@ const { isEnabled } = require('~/server/utils');
* @returns {string} The sanitized model name.
*/
const sanitizeModelName = (modelName) => {
// Replace periods with empty strings and other disallowed characters as needed
// Replace periods with empty strings and other disallowed characters as needed.
return modelName.replace(/\./g, '');
};