refactor: remove redundant ESLint config import

Signed-off-by: Sped0n <hi@sped0n.com>
This commit is contained in:
Sped0n
2025-11-12 04:53:30 +08:00
committed by Ryan
parent 4c91cd269e
commit 283f386371
5 changed files with 14 additions and 9 deletions

View File

@@ -24,10 +24,13 @@ jobs:
- name: Get changed files in scope
id: changed-files-specific
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
files: |
package.json
pnpm-lock.yaml
tsconfig.json
vite.config.ts
assets/**
build:
@@ -36,7 +39,6 @@ jobs:
name: Build (Hugo ${{ matrix.hugo-version }})
needs: [filter]
if: |
github.ref == 'refs/heads/main' &&
github.event.repository.fork == false
strategy:
matrix:

View File

@@ -34,7 +34,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('./pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies