* pull changes from docs-playground * cleanup, add callout banner * cleanup linting and test fixes * add discussion link Co-authored-by: James M. Greene <JamesMGreene@github.com>
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
const experimentalFiles = [
|
|
'actions/guides/building-and-testing-nodejs.md',
|
|
'actions/guides/building-and-testing-python.md',
|
|
]
|
|
|
|
export const isExperimental = (path) => {
|
|
return experimentalFiles.includes(path)
|
|
}
|