{"id":20838429,"url":"https://github.com/reload/action-style-quality","last_synced_at":"2026-04-01T20:28:18.659Z","repository":{"id":45146829,"uuid":"426233760","full_name":"reload/action-style-quality","owner":"reload","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-17T10:23:52.000Z","size":123,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-18T01:28:04.311Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-09T13:10:30.000Z","updated_at":"2026-03-17T10:23:56.000Z","dependencies_parsed_at":"2024-11-18T01:10:18.024Z","dependency_job_id":"efb3a779-85be-4d32-b1f7-b02fb5ae259a","html_url":"https://github.com/reload/action-style-quality","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reload/action-style-quality","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-style-quality","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-style-quality/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-style-quality/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-style-quality/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reload","download_url":"https://codeload.github.com/reload/action-style-quality/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reload%2Faction-style-quality/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291630,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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:15.845Z","updated_at":"2026-04-01T20:28:18.648Z","avatar_url":"https://github.com/reload.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# action-style-quality\nGitHub action that yells if style 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 minimally required packages:\n\n```sh\nnpm install stylelint 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: Style Quality\n\non: pull_request\n\njobs:\n  quality:\n    name: Style 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: Style Quality\n      uses: reload/action-style-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n## Subdirectory (theme) configuration\n\n```yaml\nname: Style Quality\n\non: pull_request\n\njobs:\n  quality:\n    name: Style 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: Style Quality\n      uses: reload/action-style-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        working_directory: ./web/themes/custom/custom-theme/scss\n```\n\n## Change targeted files\n\n```yaml\njobs:\n  quality:\n    name: Style 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: Style Quality\n      uses: reload/action-style-quality@1.0.0\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n        file_extensions: '.css,' # Default: '.css,.sass,.scss,.less'\n```\n\n## Override stylelint and prettier targets\n\n```yaml\njobs:\n  quality:\n    name: Style 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: Style Quality\n      uses: reload/action-style-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        stylelint_target: './code/**/*' # Default: './**/*'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Faction-style-quality","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freload%2Faction-style-quality","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freload%2Faction-style-quality/lists"}