Skip to content

Commit 6d3eb41

Browse files
🎬 Fix GH Actions
1 parent 3c460a4 commit 6d3eb41

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

‎.github/workflows/outdated.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
steps:
1212
- name: checkout
1313
uses: actions/checkout@v5
14+
- name: Install pnpm
15+
uses: pnpm/action-setup@v4
16+
with:
17+
version: 10
1418
- name: setup Node.js
1519
uses: actions/setup-node@v5
1620
with:
1721
node-version: 24
1822
cache: 'pnpm'
19-
- name: Install pnpm
20-
uses: pnpm/action-setup@v4
21-
with:
22-
version: 10
2323
- name: Install dependencies
2424
run: pnpm install --frozen-lockfile
2525
- name: Check for outdated dependencies

‎.github/workflows/test.yml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
steps:
1616
- name: checkout
1717
uses: actions/checkout@v5
18+
- name: Install pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
version: 10
1822
- name: setup Node.js ${{ matrix.node-version }}
1923
uses: actions/setup-node@v5
2024
with:
2125
node-version: ${{ matrix.node-version }}
2226
cache: 'pnpm'
23-
- name: Install pnpm
24-
uses: pnpm/action-setup@v4
25-
with:
26-
version: 10
2727
- name: Install dependencies
2828
run: pnpm install --frozen-lockfile
2929
- name: Build

0 commit comments

Comments
 (0)