-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Move public-api-check script to GH action (#5113)
* v1 * compile issues * Changes from lint:fix * internal deps * Changes from lint:fix * changes from linting + use check in workflow * Changes from lint:fix * add action yml and use inputs to make it callable * fix run => uses * move check up * test path * added getPackages dep * Changes from lint:fix * move check down * use esbuild instead of ncc * add inputs * build.yml input * trim array items * cleanup * add test * normalize * fix test? * Changes from lint:fix * test errorSpy * whoops * -_- * revert * consistency * add conditionals for esm * regex fix * update + lint spec * try * use accessSync * using cross-env * Changes from lint:fix * cleanup * Changes from lint:fix --------- Co-authored-by: cloud-sdk-js <[email protected]> Co-authored-by: Marika Marszalkowski <[email protected]> Co-authored-by: Deeksha Sinha <[email protected]> Co-authored-by: deekshas8 <[email protected]>
- Loading branch information
1 parent
745766e
commit 758fbbf
Showing
24 changed files
with
93,061 additions
and
385 deletions.
There are no files selected for viewing
440 changes: 220 additions & 220 deletions
440
.github/actions/changesets-fixed-version-bump/index.js
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: 'Check public API' | ||
description: 'Checks whether the public API is correctly exported.' | ||
inputs: | ||
force_internal_exports: | ||
description: 'Whether to force that everything is exported through the internal API.' | ||
default: 'false' | ||
excluded_packages: | ||
description: 'Packages to exclude when checking the public API.' | ||
ignored_paths: | ||
description: 'Paths to ignore when checking the public API.' | ||
|
||
runs: | ||
using: 'node20' | ||
main: 'index.js' |
Large diffs are not rendered by default.
Oops, something went wrong.
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.