{"id":20838388,"url":"https://github.com/reload/action-jsts-quality","last_synced_at":"2026-04-05T10:02:00.712Z","repository":{"id":42623546,"uuid":"401994301","full_name":"reload/action-jsts-quality","owner":"reload","description":"GitHub action that yells if JS/TS formatting and linting is not up to snuff!","archived":false,"fork":false,"pushed_at":"2026-03-15T05:35:19.000Z","size":831,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-15T22:06:22.662Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/reload.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":".github/CODEOWNERS","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":"2021-09-01T08:53:59.000Z","updated_at":"2026-03-15T05:35:07.000Z","dependencies_parsed_at":"2026-02-23T11:06:44.950Z","dependency_job_id":null,"html_url":"https://github.com/reload/action-jsts-quality","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/reload/action-jsts-quality","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-jsts-quality","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-jsts-quality/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-jsts-quality/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-jsts-quality/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reload","download_url":"https://codeload.github.com/reload/action-jsts-quality/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-jsts-quality/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31431451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"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":"2024-11-18T01:10:05.244Z","updated_at":"2026-04-05T10:02:00.695Z","avatar_url":"https://github.com/reload.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# action-jsts-quality\nGitHub action that yells if JS/TS formatting and linting is not up to snuff!\n\n# Requirements\n\n[npm \u003e= 7](https://github.blog/2021-02-02-npm-7-is-now-generally-available/)\n\nInstall the required packages:\n\n```sh\nnpm install eslint prettier --save-dev\n```\n\nThe action will make use of your installed version of the required tools.\nSo make sure to have them specified in your `package.json` and available from\n`node_modules/.bin`\n\n# Usage\n\n## Root configuration\n\n```yaml\nname: JSTS Quality\n\non: pull_request\n\njobs:\n  quality:\n    name: JSTS Quality\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n\n    - name: Setup Node\n      uses: actions/setup-node@v2\n      with:\n        node-version: '16'\n        cache: 'npm'\n\n    - name: Install dependencies\n      run: npm ci\n\n    - name: JSTS Quality\n      uses: reload/action-jsts-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n## Subdirectory (theme) configuration\n\n```yaml\nname: JSTS Quality\n\non: pull_request\n\njobs:\n  quality:\n    name: JSTS Quality\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n\n    - name: Setup Node\n      uses: actions/setup-node@v2\n      with:\n        node-version: '16'\n        cache: 'npm'\n        cache-dependency-path: ./web/themes/custom/custom-theme/package-lock.json\n\n    - name: Install dependencies\n      run: npm ci\n      working-directory: ./web/themes/custom/custom-theme\n\n    - name: JSTS Quality\n      uses: reload/action-jsts-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        working_directory: ./web/themes/custom/custom-theme/js\n```\n\n## Change targeted files\n\n```yaml\njobs:\n  quality:\n    name: JSTS Quality\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n\n    - name: Setup Node\n      uses: actions/setup-node@v2\n      with:\n        node-version: '16'\n        cache: 'npm'\n\n    - name: Install dependencies\n      run: npm ci\n\n    - name: JSTS Quality\n      uses: reload/action-jsts-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        file_extensions: '.ts,' # Default: '.js,.jsx,.ts,.tsx,.mjs'\n```\n\n## Override eslint and prettier targets\n\n```yaml\njobs:\n  quality:\n    name: JSTS Quality\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n\n    - name: Setup Node\n      uses: actions/setup-node@v2\n      with:\n        node-version: '16'\n        cache: 'npm'\n\n    - name: Install dependencies\n      run: npm ci\n\n    - name: JSTS Quality\n      uses: reload/action-jsts-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        # Both of the specified targets have their origin at whatever\n        # 'working_directory' is set to.\n        working_directory: './src' # Default: ''\n        prettier_target: './code/**/*' # Default: './**/*'\n        eslint_target: './code' # Default: '.'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Faction-jsts-quality","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freload%2Faction-jsts-quality","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Faction-jsts-quality/lists"}