Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit a5ebd17

Browse files
committed
ci: fix ordering
1 parent 1b3c1b0 commit a5ebd17

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

.github/workflows/build-and-dockerize.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ jobs:
4141
with:
4242
fetch-depth: 2
4343

44+
- name: Install pnpm
45+
uses: pnpm/action-setup@v4
46+
with:
47+
version: 9
48+
4449
- name: Set up Node
4550
uses: actions/setup-node@v3
4651
with:
4752
node-version: 20
4853
cache: pnpm
4954

50-
- name: Install pnpm
51-
uses: pnpm/action-setup@v4
52-
with:
53-
version: 9
54-
5555
- name: Configure docker buildx
5656
uses: docker/setup-buildx-action@v3
5757
with:

.github/workflows/ci.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23+
24+
- name: Install
25+
run: pnpm install
26+
2327
- name: Set up Node
2428
uses: actions/setup-node@v3
2529
with:
2630
node-version: 20
2731
cache: pnpm
28-
- name: Install pnpm
29-
uses: pnpm/action-setup@v4
30-
with:
31-
version: 9
32-
- name: Install
33-
run: pnpm install
32+
3433
- name: Check
3534
run: pnpm check:${{ matrix.check }}
3635

.github/workflows/deploy.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
with:
2222
ref: ${{ env.COMMIT_ID }}
2323

24+
- name: Install pnpm
25+
uses: pnpm/action-setup@v4
26+
with:
27+
version: 9
28+
2429
- name: Set up Node
2530
uses: actions/setup-node@v4
2631
with:
2732
node-version: 20
2833
cache: pnpm
2934

30-
- name: Install pnpm
31-
uses: pnpm/action-setup@v4
32-
with:
33-
version: 9
34-
3535
- name: Install dependencies
3636
run: pnpm install
3737

0 commit comments

Comments
 (0)