Skip to content

Commit 066b80e

Browse files
committed
chore: replace pnpm setup with npm in build and validation workflows
1 parent 587fbe4 commit 066b80e

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,19 @@ name: Build
22
on: [push, pull_request]
33

44
jobs:
5-
lint:
5+
build:
66
name: 🚀 Build
77
runs-on: ubuntu-latest
88

99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v4
1212

13-
- name: Setup pnpm
14-
uses: pnpm/action-setup@v4
15-
with:
16-
version: 10
17-
run_install: false
18-
1913
- name: Setup Node.js
2014
uses: actions/setup-node@v4
2115
with:
2216
node-version: 20
17+
cache: 'npm'
2318

2419
- name: Install dependencies
2520
run: npm install

.github/workflows/validations.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,11 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v4
1212

13-
- name: Setup pnpm
14-
uses: pnpm/action-setup@v4
15-
with:
16-
version: 10
17-
run_install: false
18-
1913
- name: Setup Node.js
2014
uses: actions/setup-node@v4
2115
with:
2216
node-version: 20
17+
cache: 'npm'
2318

2419
- name: Install dependencies
2520
run: npm install

0 commit comments

Comments
 (0)