Skip to content

Commit 166315c

Browse files
committed
Refactor Node.js setup steps in workflows to use consistent naming and versioning
1 parent 7223cf3 commit 166315c

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

.github/workflows/page.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
- uses: pnpm/action-setup@v4
2020

21-
- name: Setup Node.js 22
21+
- name: Setup Node 22
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 22.x
24+
node-version: 22
2525
cache: pnpm
2626

2727
- name: Install Dependencies

.github/workflows/release-ext.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
- uses: pnpm/action-setup@v4
1717

18-
- name: Setup Node.js 22
18+
- name: Setup Node 22
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 22.x
21+
node-version: 22
2222
cache: pnpm
2323

2424
- name: Install Dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
- uses: pnpm/action-setup@v4
1919

20-
- name: Setup Node.js 22
20+
- name: Setup Node 22
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 22.x
23+
node-version: 22
2424
cache: pnpm
2525

2626
- name: Install Dependencies

.github/workflows/tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,15 @@ jobs:
1818

1919
- uses: pnpm/action-setup@v4
2020

21-
- name: Setup Node.js 22
21+
- name: Setup Node 22
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 22.x
24+
node-version: 22
2525
cache: pnpm
2626

2727
- name: Install dependencies
2828
run: pnpm install --no-frozen-lockfile --ignore-scripts
2929

30-
- name: Install Playwright browser and dependencies
31-
run: pnpm exec playwright install --with-deps chromium
32-
3330
- name: Run Build and Tests
3431
run: pnpm run build-test
3532

0 commit comments

Comments
 (0)