Skip to content

Commit 1065622

Browse files
build 6419793 fixed
1 parent 6419793 commit 1065622

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,13 @@ jobs:
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: '22'
31-
cache: 'npm'
31+
package-manager: pnpm
32+
cache: 'pnpm'
3233

3334
- name: Setup pnpm
34-
uses: pnpm/action-setup@v2
35-
36-
- name: Install Node Dependencies
37-
run: |
38-
npm install -g pnpm
35+
uses: pnpm/action-setup@v4
36+
with:
37+
version: 10
3938

4039
- name: Install Dependencies
4140
run: |

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,16 @@ jobs:
2828
uses: actions/setup-node@v4
2929
with:
3030
node-version: '22'
31-
cache: 'npm'
31+
package-manager: pnpm
32+
cache: 'pnpm'
3233

3334
- name: Setup pnpm
34-
uses: pnpm/action-setup@v2
35+
uses: pnpm/action-setup@v4
36+
with:
37+
version: 10
3538

3639
- name: Install Node Dependencies
37-
run: |
38-
npm install -g pnpm
39-
pnpm install
40+
run: pnpm install
4041

4142
- name: Add Flux Credentials Loaded From ENV
4243
run: composer config http-basic.composer.fluxui.dev "${{ secrets.FLUX_USERNAME }}" "${{ secrets.FLUX_LICENSE_KEY }}"

0 commit comments

Comments
 (0)