{"id":19472419,"url":"https://github.com/aboutbits/github-actions-node","last_synced_at":"2026-05-14T18:02:06.601Z","repository":{"id":180765683,"uuid":"665009069","full_name":"aboutbits/github-actions-node","owner":"aboutbits","description":"GitHub Actions - Node","archived":false,"fork":false,"pushed_at":"2025-11-18T15:59:59.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-18T16:09:29.162Z","etag":null,"topics":["github-actions","node"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aboutbits.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-11T08:35:12.000Z","updated_at":"2025-11-18T15:59:14.000Z","dependencies_parsed_at":"2025-01-08T05:52:40.841Z","dependency_job_id":"1eb058ac-fabb-402d-b75b-e1af8fa23591","html_url":"https://github.com/aboutbits/github-actions-node","commit_stats":null,"previous_names":["aboutbits/github-actions-node"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/aboutbits/github-actions-node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aboutbits","download_url":"https://codeload.github.com/aboutbits/github-actions-node/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-node/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33037047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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"}},"keywords":["github-actions","node"],"created_at":"2024-11-10T19:14:24.615Z","updated_at":"2026-05-14T18:02:06.589Z","avatar_url":"https://github.com/aboutbits.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Actions Node\n\nA collection of GitHub actions for Node projects.\n\n## Actions\n\n### Setup Node\n\nThis action will set up Node.js.\n\n#### Example\n\n```yaml\n  - uses: aboutbits/github-actions-node/setup@v3\n    with:\n      node-version: 22\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                | Required/Default | Description                               |\n|---------------------|------------------|-------------------------------------------|\n| `working-directory` | `.`              | The working directory of the action       |\n| `node-version`      | `22`             | The Node.js version that should be set up |\n| `registry-url`      | (empty)          | Optional registry to set up for auth      |\n\n### Setup Node and Install Dependencies\n\nThis action will set up Node.js and install all NPM dependencies.\n\n#### Example\n\n```yaml\n  - uses: aboutbits/github-actions-node/setup-and-install@v3\n    with:\n      node-version: 22\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                | Required/Default | Description                               |\n|---------------------|------------------|-------------------------------------------|\n| `working-directory` | `.`              | The working directory of the action       |\n| `node-version`      | `22`             | The Node.js version that should be set up |\n| `registry-url`      | (empty)          | Optional registry to set up for auth      |\n| `registry-token`    | (empty)          | Optional registry token for auth          |\n\n### Build and Release Package\n\nThis action will build and release an NPM package.\n\n#### Example\n\n```yaml\n  - uses: aboutbits/github-actions-node/build-and-publish-package@v3\n    with:\n      version: AboutBits\n      git-user-email: info@aboutbits.it\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                | Required/Default | Description                                                                                |\n|---------------------|------------------|--------------------------------------------------------------------------------------------|\n| `working-directory` | `.`              | The working directory of the action                                                        |\n| `node-version`      | `22`             | The Node.js version that should be set up                                                  |\n| `registry-url`      | (empty)          | Optional registry url for auth                                                             |\n| `registry-token`    | (empty)          | Optional registry token for auth                                                           |\n| `increment`         | required         | The version increment type (major, minor, patch, prerelease, premajor, preminor, prepatch) |\n| `preid`             | (empty)          | The prerelease identifier (only required if increment is premajor, preminor or prepatch)   |\n\n#### Outputs\n\nThe following outputs are forwarded from the underlying actions:\n\n| Name      | Description                                |\n|-----------|--------------------------------------------|\n| `name`    | The package name of the package.json file. |\n| `version` | The new package version.                   |\n\n## Build \u0026 Publish\n\nTo build and publish the action, visit the GitHub Actions page of the repository and trigger the workflow \"Release Package\" manually.\n\n## Information\n\nAbout Bits is a company based in South Tyrol, Italy. You can find more information about us on [our website](https://aboutbits.it).\n\n### Support\n\nFor support, please contact [info@aboutbits.it](mailto:info@aboutbits.it).\n\n### Credits\n\n- [All Contributors](../../contributors)\n\n### License\n\nThe MIT License (MIT). Please see the [license file](license.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutbits%2Fgithub-actions-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faboutbits%2Fgithub-actions-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutbits%2Fgithub-actions-node/lists"}