chore(ci): ⬆️ upgrade toolchain (#532)

pull/533/head
北雁云依 2025-02-17 23:56:26 +08:00 committed by GitHub
parent 2e7fbf10cd
commit c92fd018c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 13 additions and 13 deletions

View File

@ -18,15 +18,13 @@ jobs:
steps: steps:
# 第一步:检出代码 # 第一步:检出代码
- name: 检出代码 - name: 检出代码
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
# 第二步:安装 pnpm # 第二步:安装 pnpm
- name: 安装 pnpm - name: 安装 pnpm
uses: pnpm/action-setup@v3 uses: pnpm/action-setup@v4
with:
version: latest
# 第三步:安装依赖 # 第三步:安装依赖
- name: 安装依赖 - name: 安装依赖

View File

@ -13,7 +13,7 @@ jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@ -14,14 +14,12 @@ jobs:
steps: steps:
- name: 检出代码 - name: 检出代码
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: 安装 pnpm - name: 安装 pnpm
uses: pnpm/action-setup@v3 uses: pnpm/action-setup@v4
with:
version: latest
- name: 安装依赖 - name: 安装依赖
run: pnpm install run: pnpm install

View File

@ -2,7 +2,7 @@
"name": "rle-wiki", "name": "rle-wiki",
"type": "module", "type": "module",
"version": "1.0.0", "version": "1.0.0",
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a", "packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"description": "RLE 指北", "description": "RLE 指北",
"license": "CC-BY-SA-4.0", "license": "CC-BY-SA-4.0",
"scripts": { "scripts": {
@ -22,17 +22,21 @@
"@unocss/eslint-plugin": "^0.65.1", "@unocss/eslint-plugin": "^0.65.1",
"eslint": "^9.16.0", "eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3", "eslint-plugin-format": "^0.1.3",
"markdownlint-cli": "^0.44.0",
"unocss": "^0.65.1", "unocss": "^0.65.1",
"unplugin-vue-components": "^0.27.5", "unplugin-vue-components": "^0.27.5",
"vite": "^6.0.3", "vite": "^6.0.3",
"vitepress": "^1.5.0", "vitepress": "^1.5.0",
"vue": "^3.5.13", "vue": "^3.5.13"
"markdownlint-cli": "^0.44.0"
}, },
"pnpm": { "pnpm": {
"overrides": { "overrides": {
"hasown": "npm:@nolyfill/hasown@^1", "hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1" "is-core-module": "npm:@nolyfill/is-core-module@^1"
} },
"onlyBuiltDependencies": [
"esbuild",
"vue-demi"
]
} }
} }