feat(route): kakuyomu #18995
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
# eslint: | |
# name: ESLint | |
# if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }} | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 5 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: pnpm/action-setup@v4 | |
# with: | |
# version: 9 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: lts/* | |
# cache: 'pnpm' | |
# - run: pnpm i | |
# - name: Lint | |
# run: pnpm run lint | |
# 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: 5 | |
permissions: | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: 'pnpm' | |
- run: pnpm i | |
- name: Lint | |
run: pnpm run lint | |
--format @microsoft/eslint-formatter-sarif | |
--output-file eslint-results.sarif | |
continue-on-error: true | |
- name: Upload analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: eslint-results.sarif | |
wait-for-processing: true | |
# 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-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
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-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/labeler@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |