File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow is provided via the organization template repository
2+ #
3+ # https://github.com/nextcloud/.github
4+ # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
5+ #
6+ # Use lint-eslint together with lint-eslint-when-unrelated to make eslint a required check for GitHub actions
7+ # https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
8+
9+ name : Lint eslint
10+
11+ on :
12+ pull_request :
13+ paths-ignore :
14+ - ' .github/workflows/**'
15+ - ' src/**'
16+ - ' appinfo/info.xml'
17+ - ' package.json'
18+ - ' package-lock.json'
19+ - ' tsconfig.json'
20+ - ' .eslintrc.*'
21+ - ' .eslintignore'
22+ - ' **.js'
23+ - ' **.ts'
24+ - ' **.vue'
25+
26+ permissions :
27+ contents : read
28+
29+ jobs :
30+ lint :
31+ permissions :
32+ contents : none
33+
34+ runs-on : ubuntu-latest
35+
36+ name : eslint
37+
38+ steps :
39+ - run : ' echo "No eslint required"'
You can’t perform that action at this time.
0 commit comments