{"id":38615115,"url":"https://github.com/cabify/javascript-actions","last_synced_at":"2026-01-17T08:49:02.215Z","repository":{"id":41815873,"uuid":"483574689","full_name":"cabify/javascript-actions","owner":"cabify","description":"Repository to share Javascript themed Github Actions [managed by soy-programador]","archived":false,"fork":false,"pushed_at":"2025-02-25T11:53:24.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-02-25T13:56:08.573Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cabify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-04-20T08:41:48.000Z","updated_at":"2025-02-25T11:53:27.000Z","dependencies_parsed_at":"2024-07-10T11:32:20.062Z","dependency_job_id":null,"html_url":"https://github.com/cabify/javascript-actions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cabify/javascript-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cabify%2Fjavascript-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cabify%2Fjavascript-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cabify%2Fjavascript-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cabify%2Fjavascript-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cabify","download_url":"https://codeload.github.com/cabify/javascript-actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cabify%2Fjavascript-actions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504534,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-17T08:49:02.134Z","updated_at":"2026-01-17T08:49:02.203Z","avatar_url":"https://github.com/cabify.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# javascript-actions\n\nRepository to share Javascript themed Github Actions\n\n## Actions available\n\n### Tests\n\nThis workflow will perform all the steps dedicated to test any suite. This step requires a few `yarn` scripts to exists:\n\n- `yarn lint`\n- `yarn format:check`\n- `yarn typecheck`\n- `yarn test:ci`\n\nBelow you will find an example on how `package.json/scripts` object may looks like:\n\n```json\n    \"format:check\": \"prettier --check .\",\n    \"lint\": \"eslint . --ext ts,tsx,js\",\n    \"test:ci\": \"jest\",\n    \"typecheck\": \"tsc --project tsconfig.eslint.json\"\n```\n\nBelow you can find what your `.github/workflows/tests.yml` may looks like:\n\n```yml\nname: Tests\n\non: [push]\n\njobs:\n  test:\n    uses: cabify/javascript-actions/.github/workflows/tests.yml@main\n```\n\nIt means this this workflow will run on every push.\n\n\n### NPM Publish\n\nThis workflow will allow your library to be published in NPM public registry. In order for you to publish a library you may want to build the package before publish, you can always do this by putting the following scripts in `package.json/scripts`:\n\n```json\n    \"clean\": \"rimraf dist/* es2015/*\",\n    \"build\": \"yarn run clean \u0026\u0026 cross-env BABEL_ENV=build package-build\",\n    \"prepublishOnly\": \"yarn run build\",\n```\n\nThe workflow will receive the following inputs:\n\n- inputs: tag (containing the tag NPM will use to tag the version, it may be `latest` or anything else, [more information](https://docs.npmjs.com/cli/v8/commands/npm-dist-tag)).\n- secrets: token (NPM registry token with `publish` privileges, ask anybody in the Cabify's Frontend Organization about it).\n\nBelow you can find what your `.github/workflows/npm-publish.yml` may looks like:\n\n```yml\nname: Publish package\n\non:\n  release:\n    types: [created]\n\njobs:\n  publish-npm:\n    uses: cabify/javascript-actions/.github/workflows/npm_publish.yml@main\n    with:\n      # This means that every version tagged with `beta` will be published as a `beta` tagged version\n      tag: ${{ contains(github.ref_name,'beta') \u0026\u0026 'beta' || 'latest' }} \n    secrets:\n      token: ${{ secrets.NPM_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcabify%2Fjavascript-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcabify%2Fjavascript-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcabify%2Fjavascript-actions/lists"}