ci: trim remaining hosted setup

This commit is contained in:
Tianyi Cui
2026-07-22 20:00:15 +08:00
parent 17983d72bb
commit a952aaed72
4 changed files with 9 additions and 23 deletions

View File

@@ -35,8 +35,7 @@ jobs:
runs-on: dsh-ubuntu-24-04-96core
name: node 24 / complete
env:
DSH_COVERAGE_MAX_WORKERS: '12'
DSH_ESLINT_CACHE: '1'
DSH_COVERAGE_MAX_WORKERS: '16'
DSH_ESLINT_CONCURRENCY: '16'
DSH_GATE_CONCURRENCY: '12'
DSH_PUBLINT_CONCURRENCY: '16'
@@ -65,13 +64,6 @@ jobs:
restore-keys: |
${{ runner.os }}-node-${{ env.PRIMARY_NODE_VERSION }}-pnpm-
- uses: actions/cache/restore@v4
with:
path: .cache/eslint
key: ${{ runner.os }}-node-${{ env.PRIMARY_NODE_VERSION }}-eslint-full-${{ hashFiles('pnpm-lock.yaml', 'eslint.config.mjs', 'tsconfig.json', 'packages/*/*/tsconfig.json', 'examples/*/tsconfig.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.PRIMARY_NODE_VERSION }}-eslint-full-
- name: Install dependencies and prepare bubblewrap
run: |
pnpm install --frozen-lockfile &
@@ -171,12 +163,6 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Enable Developer Mode (symlink support)
shell: pwsh
run: >-
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"
/t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"
- uses: actions/setup-node@v6
with:
node-version: ${{ env.PRIMARY_NODE_VERSION }}