├── .checkov.yml ├── .gitattributes ├── .github ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── check-dist.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── example-workflow.yml │ ├── licensed.yml │ └── linter.yml ├── .gitignore ├── .licensed.yml ├── .markdown-lint.yml ├── .node-version ├── .prettierignore ├── .prettierrc.yml ├── .yaml-lint.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── __fixtures__ ├── core.js └── github.js ├── __tests__ └── main.test.js ├── action.yml ├── actionlint.yml ├── badges └── coverage.svg ├── dist └── index.js ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── rollup.config.js └── src ├── index.js └── main.js /.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.checkov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | dist/** -diff linguist-generated=true 4 | -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/example-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/example-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/licensed.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.licensed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.licensed.yml -------------------------------------------------------------------------------- /.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.markdown-lint.yml -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24.4.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .licenses/ 3 | dist/ 4 | node_modules/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/.yaml-lint.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/README.md -------------------------------------------------------------------------------- /__fixtures__/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/__fixtures__/core.js -------------------------------------------------------------------------------- /__fixtures__/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/__fixtures__/github.js -------------------------------------------------------------------------------- /__tests__/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/__tests__/main.test.js -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/action.yml -------------------------------------------------------------------------------- /actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/actionlint.yml -------------------------------------------------------------------------------- /badges/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/badges/coverage.svg -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/hello-world-javascript-action/HEAD/src/main.js --------------------------------------------------------------------------------