{"id":5806538,"name":"escemi-tech/actions-node","ecosystem":"actions","description":"Composite Github Action to provides opinionated NodeJS steps to performs Continuous Integration","homepage":"https://escemi-tech.github.io/actions-node/","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/escemi-tech/actions-node","keywords_array":["actions","github-actions","node-js","typescript"],"namespace":"escemi-tech","versions_count":17,"first_release_published_at":"2021-10-12T13:59:48.000Z","latest_release_published_at":"2023-06-30T08:31:06.000Z","latest_release_number":"v1.14.0","last_synced_at":"2026-05-26T22:02:04.142Z","created_at":"2023-01-04T16:15:47.557Z","updated_at":"2026-05-26T22:02:04.143Z","registry_url":"https://github.com/escemi-tech/actions-node","install_command":null,"documentation_url":null,"metadata":{"name":"NodeJS Continuous Integration steps","description":"Composite Github Action to provides opinionated NodeJS steps to performs Continuous Integration","branding":{"icon":"box","color":"green"},"inputs":{"checkout":{"description":"Checkout parameters. Must be a json object. See https://github.com/actions/checkout","default":"{ }"},"package-manager":{"description":"Used to specify a package manager. Supported values: 'yarn'","default":"yarn"},"build":{"description":"Build parameters. Must be a string or a json object.","default":"build"},"checks":{"description":"Optional flag to enable check steps."},"lint":{"description":"Optional flag to enable linting","default":"true"},"code-ql":{"description":"Code QL analysis language. See https://github.com/github/codeql-action","default":"typescript"},"test":{"description":"Optional flag to enable test. See https://github.com/github/codeql-action","default":"true"},"coverage":{"description":"Optional flag to enable coverage report. See https://github.com/codecov/codecov-action","default":"true"}},"runs":{"using":"composite","steps":[{"id":"prepare-checkout","if":"inputs.checkout != 'false'","uses":"actions/github-script@v6.4.1","with":{"script":"const checkoutInput = `${{ inputs.checkout }}`;\ncore.debug(`Provided \"checkout\" input: ${checkoutInput}`);\n\nif(!checkoutInput){\n  core.setFailed(`Input \"checkout\" is empty`);\n  return;\n}\n\nconst checkoutParams = JSON.parse(checkoutInput);\n\nif(typeof checkoutParams !== 'object'){\n  core.setFailed('Given \"checkout\" input is not a valid JSON object.');\n  return;\n}\n\nif(checkoutParams.token){\n  core.info('Checkout token has been provided');\n  core.setOutput('token', checkoutParams.token);\n}\n"}},{"uses":"actions/checkout@v3.5.3","if":"inputs.checkout != 'false'","with":{"token":"${{ steps.prepare-checkout.outputs.token || github.token }}"}},{"uses":"actions/setup-node@v3.6.0","id":"setup-node","with":{"node-version-file":".nvmrc","cache":"${{ inputs.package-manager }}","cache-dependency-path":"**/yarn.lock"}},{"name":"⚙️ Install Dependencies","shell":"bash","run":"yarn install --frozen-lockfile;"},{"id":"yarn-installed-packages","if":"inputs.build != 'false'","shell":"bash","run":"echo \"nx=$([[ `yarn list --pattern \"nx\" --depth=1 | grep \" nx@\"` ]] \u0026\u0026 echo \"true\" || echo \"false\")\" \u003e\u003e $GITHUB_OUTPUT\necho \"gatsby=$([[ `yarn list --pattern \"gatsby\" --depth=1 | grep \" gatsby@\"` ]] \u0026\u0026 echo \"true\" || echo \"false\")\" \u003e\u003e $GITHUB_OUTPUT\necho \"storybook=$([[ `yarn list --pattern \"storybook\" --depth=1 | grep \" @storybook/[-a-z]*@\"` ]] \u0026\u0026 echo \"true\" || echo \"false\")\" \u003e\u003e $GITHUB_OUTPUT\necho \"prettier=$([[ `yarn list --pattern \"prettier\" --depth=1 | grep \" prettier@\"` ]] \u0026\u0026 echo \"true\" || echo \"false\")\" \u003e\u003e $GITHUB_OUTPUT\n"},{"name":"♻️ NX cache","if":"inputs.build != 'false' \u0026\u0026 steps.yarn-installed-packages.outputs.nx == 'true'","uses":"actions/cache@v3.3.1","with":{"path":"node_modules/.cache/nx","key":"${{ runner.os }}-cache-nx-${{ github.sha }}","restore-keys":"${{ runner.os }}-cache-nx-\n"}},{"name":"♻️ Prettier cache","if":"inputs.checks == 'true' \u0026\u0026 inputs.lint == 'true' \u0026\u0026 steps.yarn-installed-packages.outputs.prettier == 'true'","uses":"actions/cache@v3.3.1","with":{"path":"node_modules/.cache/prettier","key":"${{ runner.os }}-cache-prettier-${{ github.sha }}","restore-keys":"${{ runner.os }}-cache-prettier-\n"}},{"name":"👕 Lint","if":"inputs.checks == 'true' \u0026\u0026 inputs.lint == 'true'","shell":"bash","run":"yarn lint"},{"name":"🛡️ CodeQL Analysis","if":"inputs.checks == 'true' \u0026\u0026 inputs.code-ql != 'false'","uses":"github/codeql-action/init@v2.20.1","with":{"languages":"${{ inputs.code-ql }}"}},{"uses":"github/codeql-action/analyze@v2.20.1","if":"inputs.checks == 'true' \u0026\u0026 inputs.code-ql != 'false'"},{"name":"♻️ Gatsby cache","if":"inputs.build != 'false' \u0026\u0026 steps.yarn-installed-packages.outputs.gatsby == 'true'","uses":"actions/cache@v3.3.1","with":{"path":".cache\npublic\n","key":"${{ runner.os }}-cache-gatsby-${{ github.sha }}","restore-keys":"${{ runner.os }}-cache-gatsby-\n"}},{"name":"♻️ Storybook cache","if":"inputs.build != 'false' \u0026\u0026 steps.yarn-installed-packages.outputs.storybook == 'true'","uses":"actions/cache@v3.3.1","with":{"path":"node_modules/.cache/storybook","key":"${{ runner.os }}-cache-storybook-${{ github.sha }}","restore-keys":"${{ runner.os }}-cache-storybook-\n"}},{"id":"prepare-build","uses":"actions/github-script@v6.4.1","with":{"script":"const buildInput = `${{ inputs.build }}`;\ncore.debug(`Provided \"build\" input: ${buildInput}`);\n\ncore.setOutput('env', {});\ncore.setOutput('command', null);\n\nif(!buildInput || buildInput === 'false'){\n  return;\n}\n\nconst isJsonString = (str)  =\u003e { try { JSON.parse(str); return true; } catch (e) { return false; }};\n\nif(!isJsonString(buildInput)){\n  core.info('Build command has been provided');\n  core.setOutput('command', buildInput);\n  return;\n}\n\nconst buildParams = JSON.parse(buildInput);\nif(typeof buildParams === 'object'){\n  if(buildParams.command){\n    core.info('Build command has been provided');\n    core.setOutput('command', buildParams.command);\n  }\n  if(buildParams.env){\n    core.info('Build env has been provided');\n    core.setOutput('env', buildParams.env);\n  }\n  return;\n}\n\ncore.setFailed('Given \\\"build\\\" input is not a string nor a JSON object.');\n"}},{"name":"🏗️ Build","shell":"bash","if":"inputs.build != 'false' \u0026\u0026 steps.prepare-build.outputs.command","env":"${{ fromJSON(steps.prepare-build.outputs.env) }}","run":"yarn ${{ steps.prepare-build.outputs.command }}"},{"name":"♻️ Get Jest cache dir","if":"inputs.checks == 'true' \u0026\u0026 inputs.test == 'true'","id":"jest-cache-dir-path","shell":"bash","run":"JEST_CACHE_DIR=$(yarn jest --showConfig | grep -oP '(?\u003c=\"cacheDirectory\": \")[^\"]+(?=\")')\necho \"dir=$JEST_CACHE_DIR\" \u003e\u003e $GITHUB_OUTPUT\n"},{"name":"♻️ Test cache","if":"inputs.checks == 'true' \u0026\u0026 inputs.test == 'true'","uses":"actions/cache@v3.3.1","with":{"path":"${{ steps.jest-cache-dir-path.outputs.dir }}","key":"${{ runner.os }}-test-${{ github.sha }}","restore-keys":"${{ runner.os }}-test-\n"}},{"name":"🧪 Test","if":"inputs.checks == 'true' \u0026\u0026 inputs.test == 'true'","shell":"bash","env":{"CI":"true"},"run":"yarn test:ci"},{"name":"📊 Code coverage","if":"inputs.checks == 'true' \u0026\u0026 inputs.coverage == 'true'","uses":"codecov/codecov-action@v3.1.4"}]},"default_branch":"main","path":null},"repo_metadata":{"uuid":"416326053","full_name":"escemi-tech/actions-node","owner":"escemi-tech","description":"Composite Github Action to provides opinionated NodeJS steps to performs Continuous Integration","archived":false,"fork":false,"pushed_at":"2023-06-30T08:36:35.000Z","size":241,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-06-30T09:46:31.000Z","etag":null,"topics":["actions","github-actions","node-js","typescript"],"latest_commit_sha":null,"homepage":"https://escemi-tech.github.io/actions-node/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/escemi-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["neilime"]}},"created_at":"2021-10-12T12:21:11.000Z","updated_at":"2022-12-14T23:53:09.000Z","dependencies_parsed_at":"2023-01-04T12:15:01.920Z","dependency_job_id":null,"html_url":"https://github.com/escemi-tech/actions-node","commit_stats":{"total_commits":126,"total_committers":3,"mean_commits":42.0,"dds":0.3015873015873016,"last_synced_commit":"0f9f5be63f7daaed31a7e9c32caafd3d9917a96f"},"previous_names":[],"tags_count":16,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/escemi-tech","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":142232516,"owners_count":6005042,"icon_url":"https://github.com/github.png","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"escemi-tech","name":"Escemi","uuid":"63734821","kind":"organization","description":"At your service to support you and overcome the challenges of your digital projects","email":null,"website":"https://www.escemi.com/","location":"Aix en provence","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/63734821?v=4","repositories_count":3,"last_synced_at":"2023-03-04T04:59:11.577Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/escemi-tech","created_at":"2022-11-14T09:57:47.413Z","updated_at":"2023-03-04T04:59:11.757Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/escemi-tech","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/escemi-tech/repositories"},"tags":[{"name":"v1.13.0","sha":"dfdd6adf5589db121d67640a2743ed56778aee80","kind":"commit","published_at":"2023-01-20T07:55:52.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.13.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.13.0","dependencies_parsed_at":"2023-06-02T00:22:58.712Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.13.0/manifests"},{"name":"v1.12.0","sha":"3dc347d8330bc0010bf0c709a7d85eefda188446","kind":"commit","published_at":"2022-11-22T11:42:14.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.12.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.12.0","dependencies_parsed_at":"2023-06-01T11:00:18.030Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.12.0/manifests"},{"name":"v1.11.0","sha":"92f770972b5dcd22c67cdaf2a528911bc3f55113","kind":"commit","published_at":"2022-11-04T11:32:26.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.11.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.11.0","dependencies_parsed_at":"2023-06-01T11:00:19.500Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.11.0/manifests"},{"name":"v1.10.0","sha":"09b070e8879a64c191987c4a118f75a8dc6f9296","kind":"commit","published_at":"2022-09-23T06:48:44.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.10.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.10.0","dependencies_parsed_at":"2023-05-31T01:32:36.394Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.10.0/manifests"},{"name":"v1.9.0","sha":"214ab55dc47e24f0e1a295f8e03739a0306eb1a7","kind":"commit","published_at":"2022-07-15T09:34:54.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.9.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.9.0","dependencies_parsed_at":"2023-05-31T01:32:37.286Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.9.0/manifests"},{"name":"v1.8.0","sha":"9a92020e101dae748945c964214d752514eeebca","kind":"commit","published_at":"2022-06-03T07:26:19.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.8.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.8.0","dependencies_parsed_at":"2023-05-31T01:32:38.285Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.8.0/manifests"},{"name":"v1.7.0","sha":"098e2831c2484078db30738853d709874ad901aa","kind":"commit","published_at":"2022-03-25T07:25:49.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.7.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.7.0","dependencies_parsed_at":"2023-05-31T01:32:39.238Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.7.0/manifests"},{"name":"v1.6.0","sha":"f8dff699e5f6dd8bbc4a3e67563e5225bee504f1","kind":"commit","published_at":"2022-02-25T11:17:54.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.6.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.6.0","dependencies_parsed_at":"2023-05-31T01:32:40.217Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.6.0/manifests"},{"name":"v1.5.0","sha":"8d2a2f88f68e369ce6a665408d6354d64d01557d","kind":"commit","published_at":"2022-02-05T15:59:21.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.5.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.5.0","dependencies_parsed_at":"2023-05-31T01:32:41.673Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.5.0/manifests"},{"name":"v1.4.2","sha":"e72ec537ca6af472fd30a4bb7f785bd8552f9263","kind":"commit","published_at":"2022-01-28T10:19:49.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.4.2","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.4.2","dependencies_parsed_at":"2023-05-31T01:32:42.725Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.2/manifests"},{"name":"v1.4.1","sha":"b36ae0e4fc11129b35b05b07839f2a323814669c","kind":"commit","published_at":"2022-01-17T18:41:09.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.4.1","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.4.1","dependencies_parsed_at":"2023-05-31T01:32:43.818Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.1/manifests"},{"name":"v1.4.0","sha":"fb4eba3aaedc5a4ac0b4cb7346b865ec8ec887b1","kind":"commit","published_at":"2022-01-13T22:00:06.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.4.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.4.0","dependencies_parsed_at":"2023-05-31T01:32:44.863Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"96afd107e3f5055161c6f6c3b93759dfc524a3df","kind":"commit","published_at":"2022-01-07T19:22:34.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.3.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.3.0","dependencies_parsed_at":"2023-05-31T01:32:45.639Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.3.0/manifests"},{"name":"v1.2.0","sha":"88c883216dfad35b3173ae0e5ada016fbb30d01a","kind":"commit","published_at":"2021-10-19T07:46:10.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.2.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.2.0","dependencies_parsed_at":"2023-05-31T01:32:46.741Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.2.0/manifests"},{"name":"v1.1.0","sha":"1dd3c0adc6da493e4ade081f44dbbb1ece432d95","kind":"commit","published_at":"2021-10-18T09:24:14.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.1.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.1.0","dependencies_parsed_at":"2023-05-31T01:32:47.571Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"b7ab52850dec21b836ad2ad8dd1b7b06a3220950","kind":"commit","published_at":"2021-10-12T13:59:48.000Z","download_url":"https://codeload.github.com/escemi-tech/actions-node/tar.gz/v1.0.0","html_url":"https://github.com/escemi-tech/actions-node/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T01:32:48.798Z","dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/escemi-tech%2Factions-node/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2023-06-30T10:13:59.107Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":3,"rankings":{"downloads":null,"dependent_repos_count":18.12074156235145,"dependent_packages_count":0.0,"stargazers_count":23.023292663603232,"forks_count":35.2749168119157,"docker_downloads_count":null,"average":19.104737759467596},"purl":"pkg:githubactions/escemi-tech/actions-node","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/escemi-tech/actions-node","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/escemi-tech/actions-node","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/escemi-tech/actions-node/dependencies","status":null,"funding_links":["https://github.com/sponsors/neilime"],"critical":null,"issue_metadata":{"last_synced_at":"2023-08-09T09:38:10.278Z","issues_count":1,"pull_requests_count":113,"avg_time_to_close_issue":5953493.0,"avg_time_to_close_pull_request":19510.265486725664,"issues_closed_count":1,"pull_requests_closed_count":113,"pull_request_authors_count":2,"issue_authors_count":1,"avg_comments_per_issue":2.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":113,"bot_issues_count":0,"bot_pull_requests_count":110,"past_year_issues_count":0,"past_year_pull_requests_count":84,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":20394.690476190477,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":84,"past_year_pull_request_authors_count":1,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":84,"past_year_merged_pull_requests_count":84},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/escemi-tech%2Factions-node/codemeta","maintainers":[]}