All checks were successful
Lint / Lint (push) Successful in 32s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sibiraj-s/action-eslint](https://github.com/sibiraj-s/action-eslint) | action | major | `v3.0.1` -> `v4.0.1` | --- ### Release Notes <details> <summary>sibiraj-s/action-eslint (sibiraj-s/action-eslint)</summary> ### [`v4.0.1`](https://github.com/sibiraj-s/action-eslint/blob/HEAD/CHANGELOG.md#v401-2025-07-08) [Compare Source](https://github.com/sibiraj-s/action-eslint/compare/v4.0.0...v4.0.1) ##### Bug Fixes - fix usage of logger ([502aee5](https://github.com/sibiraj-s/action-eslint/commit/502aee5)) - fix GitHub rest API usage ([6ab9fd68](https://github.com/sibiraj-s/action-eslint/commit/6ab9fd68)) ### [`v4.0.0`](https://github.com/sibiraj-s/action-eslint/blob/HEAD/CHANGELOG.md#v400-2025-07-08) [Compare Source](https://github.com/sibiraj-s/action-eslint/compare/v3.0.1...v4.0.0) ##### Breaking Changes - The action is now ESM ([d9543bd](https://github.com/sibiraj-s/action-eslint/commit/d9543bd)) - Action runtime updated to Node.js 20 ([5580b04](https://github.com/sibiraj-s/action-eslint/commit/5580b04)) - Drop `use-npx` option, by default it uses `npx` for `npm` and `pnpm dlx` for `pnpm` ([f7b0bf2](https://github.com/sibiraj-s/action-eslint/commit/f7b0bf2)) ##### Features - Add pnpm support ([f7b0bf2](https://github.com/sibiraj-s/action-eslint/commit/f7b0bf2)) ##### Bug Fixes - Fix exec working directory ([548a14a](https://github.com/sibiraj-s/action-eslint/commit/548a14a)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40Ni4wIiwidXBkYXRlZEluVmVyIjoiNDAuNDYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #15 Co-authored-by: Renovate Bot <renovatebot@schulze.network> Co-committed-by: Renovate Bot <renovatebot@schulze.network>
28 lines
653 B
YAML
28 lines
653 B
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "**" # matches every branch
|
|
|
|
jobs:
|
|
eslint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
|
|
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: 20
|
|
cache: "npm"
|
|
- run: npm i
|
|
- uses: sibiraj-s/action-eslint@c24ff92cabb3ad38994c99f5583c59125ea040b0 # v4.0.1
|
|
with:
|
|
eslint-args: "--ignore-path=.gitignore --quiet"
|
|
extensions: "js,jsx,ts,tsx"
|
|
annotations: true
|
|
all-files: true
|