mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-20 08:43:31 +08:00
Some checks are pending
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Docker Release / check-env (push) Waiting to run
Docker Release / release (push) Blocked by required conditions
Docker Release / description (push) Blocked by required conditions
Format / Auto format (push) Waiting to run
Linter / Lint (push) Waiting to run
Linter / Validate PR title (push) Waiting to run
Linter / Pull Request Labeler (push) Waiting to run
npm Publish / npm publish (push) Waiting to run
Semgrep / Scan (push) Waiting to run
Test / fix-pnpm-lock (push) Waiting to run
Test / Vitest on Node ${{ matrix.node-version }} (20) (push) Waiting to run
Test / Vitest on Node ${{ matrix.node-version }} (22) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency: environment:{ "PUPPETEER_SKIP_DOWNLOAD": "0" } name:bundled Chromium], 20) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency: environment:{ "PUPPETEER_SKIP_DOWNLOAD": "0" } name:bundled Chromium], 22) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency:chromium-browser environment:{ "PUPPETEER_SKIP_DOWNLOAD": "1" } name:Chromium from Ubuntu], 20) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency:chromium-browser environment:{ "PUPPETEER_SKIP_DOWNLOAD": "1" } name:Chromium from Ubuntu], 22) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency:google-chrome-stable environment:{ "PUPPETEER_SKIP_DOWNLOAD": "1" } name:Chrome from Google], 20) (push) Waiting to run
Test / Vitest puppeteer on Node ${{ matrix.node-version }} with ${{ matrix.chromium.name }} (map[dependency:google-chrome-stable environment:{ "PUPPETEER_SKIP_DOWNLOAD": "1" } name:Chrome from Google], 22) (push) Waiting to run
Test / Build radar and maintainer on Node ${{ matrix.node-version }} (20) (push) Waiting to run
Test / Build radar and maintainer on Node ${{ matrix.node-version }} (22) (push) Waiting to run
Test / automerge (push) Blocked by required conditions
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
name: Build assets (Full Routes Test Result)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build assets
|
|
timeout-minutes: 120
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
- name: Use Node.js Active LTS
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/*
|
|
cache: 'pnpm'
|
|
- name: Install dependencies (yarn)
|
|
run: pnpm i
|
|
- name: Build assets
|
|
run: pnpm build
|
|
- name: Build full routes test result
|
|
continue-on-error: true
|
|
run: pnpm vitest:fullroutes
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v4
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./assets
|
|
user_name: 'github-actions[bot]'
|
|
user_email: '41898282+github-actions[bot]@users.noreply.github.com'
|
|
keep_files: true
|