Skip to content

Commit 2c7fd07

Browse files
committed
fix ci
1 parent 7ec3fc7 commit 2c7fd07

File tree

4 files changed

+2
-39
lines changed

4 files changed

+2
-39
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222

2323
- name: Setup Node.js and pnpm
2424
uses: ./.github/actions/setup-node-pnpm
25-
with:
26-
enable-cache: true
27-
frozen-lockfile: true
2825

2926
- name: Lint code
3027
run: pnpm lint

.github/workflows/copilot-setup-steps.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030

3131
- name: Setup Node.js and pnpm
3232
uses: ./.github/actions/setup-node-pnpm
33-
with:
34-
enable-cache: false
35-
frozen-lockfile: false
3633

3734
- name: Run lint
3835
run: pnpm lint

.github/workflows/deploy.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525

2626
- name: Setup Node.js and pnpm
2727
uses: ./.github/actions/setup-node-pnpm
28-
with:
29-
enable-cache: false
30-
frozen-lockfile: false
3128

3229
- name: Lint
3330
run: pnpm lint

.github/workflows/update-rolldown-stats.yml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -16,37 +16,9 @@ jobs:
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v5
19-
with:
20-
token: ${{ secrets.GITHUB_TOKEN }}
21-
fetch-depth: 0
2219

23-
- name: Setup Node.js LTS
24-
uses: actions/setup-node@v4
25-
with:
26-
node-version: 'lts/*'
27-
env:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29-
30-
- name: Setup pnpm
31-
uses: pnpm/action-setup@v4
32-
33-
- name: Get pnpm store directory
34-
shell: bash
35-
run: |
36-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
37-
38-
- name: Setup pnpm cache
39-
uses: actions/cache@v4
40-
with:
41-
path: ${{ env.STORE_PATH }}
42-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
43-
restore-keys: |
44-
${{ runner.os }}-pnpm-store-
45-
46-
- name: Install dependencies
47-
run: pnpm install --frozen-lockfile
48-
env:
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
- name: Setup Node.js and pnpm
21+
uses: ./.github/actions/setup-node-pnpm
5022

5123
- name: Run rolldown stats collection
5224
run: pnpm rolldown:stats

0 commit comments

Comments
 (0)