71 lines
2.8 KiB
YAML
71 lines
2.8 KiB
YAML
name: Linter
|
|
|
|
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
|
|
# pull_request includes [opened, reopened, synchronize] events by default
|
|
# 'edited' is required for title-lint
|
|
on:
|
|
push: {}
|
|
pull_request:
|
|
types: [opened, reopened, synchronize, edited]
|
|
pull_request_target:
|
|
types: [opened, reopened, synchronize, edited]
|
|
|
|
jobs:
|
|
# https://github.com/actions/starter-workflows/blob/main/code-scanning/eslint.yml
|
|
eslint-warning:
|
|
name: Lint
|
|
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
permissions:
|
|
security-events: write
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
|
|
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version: lts/*
|
|
cache: 'pnpm'
|
|
- run: pnpm i
|
|
- name: Install oxlint to SARIF converter
|
|
run: pnpm i -g oxlint-json-to-sarif
|
|
- name: Lint
|
|
run: pnpm exec oxlint --type-aware
|
|
--format=json | oxlint-json-to-sarif > oxlint-results.sarif
|
|
continue-on-error: true
|
|
- name: Upload analysis results to GitHub
|
|
uses: github/codeql-action/upload-sarif@v4
|
|
with:
|
|
sarif_file: oxlint-results.sarif
|
|
wait-for-processing: true
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
|
|
with:
|
|
path: oxlint-results.sarif
|
|
|
|
# https://github.com/amannn/action-semantic-pull-request
|
|
title-lint:
|
|
if: ${{ github.event_name == 'pull_request_target' && github.repository == 'DIYgod/RSSHub' }}
|
|
name: Validate PR title
|
|
runs-on: ubuntu-slim
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
ignoreLabels: |
|
|
dependencies
|
|
wip: true
|
|
|
|
labeler:
|
|
name: Pull Request Labeler
|
|
if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && github.repository == 'DIYgod/RSSHub' }}
|
|
permissions:
|
|
pull-requests: write
|
|
runs-on: ubuntu-slim
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|