Skip to content

feat: add card border and shadow effect with config toggle #641

feat: add card border and shadow effect with config toggle

feat: add card border and shadow effect with config toggle #641

Workflow file for this run

name: Fuwari-yCENzh CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
name: Astro Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Astro Check
run: pnpm astro check
env:
ENABLE_CONTENT_SYNC: false
- name: Run TypeScript Check
run: pnpm type-check
build:
name: Astro Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Build
run: pnpm build
env:
ENABLE_CONTENT_SYNC: false
BILI_SESSDATA: ${{ secrets.BILI_SESSDATA }}