├── .github ├── dependabot.yml └── workflows │ ├── basic-validation.yml │ ├── check-dist.yml │ ├── codeql-analysis.yml │ ├── licensed.yml │ └── update-config-files.yml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md └── reusable-configurations ├── .eslintrc.js └── .prettierrc.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/basic-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/workflows/basic-validation.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/update-config-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/.github/workflows/update-config-files.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /reusable-configurations/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/reusable-configurations/.eslintrc.js -------------------------------------------------------------------------------- /reusable-configurations/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/reusable-workflows/HEAD/reusable-configurations/.prettierrc.js --------------------------------------------------------------------------------