This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (51 loc) · 1.59 KB
/
lint.yml
File metadata and controls
61 lines (51 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Linter
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- '**'
# Replace pull_request with pull_request_target if you
# plan to use this action with forks, see the Limitations section
pull_request_target:
branches:
- main, dev
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
checks: write
contents: write
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Check out Git repository
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Node.js dependencies
run: npm ci
- name: Super-Linter
uses: super-linter/super-linter@v6.3.0
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
TYPESCRIPT_ES_CONFIG_FILE: .eslintrc
VALIDATE_ALL_CODEBASE: false
VALIDATE_TYPESCRIPT_ES: true
VALIDATE_TSX: true
VALIDATE_TYPESCRIPT_STANDARD: true
- name: Run next linters
run: npm run linter-next