Skip to content

Commit a60b4bf

Browse files
🩹 [Patch]: Change linter to super-linter/super-linter (#16)
## Description - Change linter to super-linter/super-linter ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 6c75642 commit a60b4bf

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/Action-Test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.eve
44

55
on: [pull_request]
66

7+
permissions: {}
8+
79
jobs:
810
ActionTestDefault:
911
strategy:

.github/workflows/Linter.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,23 @@ run-name: "Linter - [${{ github.event.pull_request.title }} #${{ github.event.pu
44

55
on: [pull_request]
66

7+
permissions:
8+
contents: read
9+
packages: read
10+
statuses: write # To report GitHub Actions status checks
11+
712
jobs:
813
Lint:
914
name: Lint code base
1015
runs-on: ubuntu-latest
1116
steps:
1217
- name: Checkout repo
1318
uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
1421

1522
- name: Lint code base
16-
uses: github/super-linter@latest
23+
uses: super-linter/super-linter@latest
1724
env:
1825
GITHUB_TOKEN: ${{ github.token }}
1926
VALIDATE_JSCPD: false

0 commit comments

Comments
 (0)