Skip to content

Commit d84c879

Browse files
chore: remove bahmutov/npm-install usage (#938)
1 parent 0d1e0aa commit d84c879

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
- name: Set up Node
2929
uses: actions/setup-node@v4
3030
with:
31+
cache: npm
3132
node-version-file: '.nvmrc'
3233

3334
- name: Install dependencies
34-
uses: bahmutov/npm-install@v1
35+
run: npm install
3536

3637
- name: Build package
3738
run: npm run build

.github/workflows/verifications.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ jobs:
1919
- name: Set up Node
2020
uses: actions/setup-node@v4
2121
with:
22+
cache: npm
2223
node-version-file: '.nvmrc'
2324

2425
- name: Install dependencies
25-
uses: bahmutov/npm-install@v1
26+
run: npm install
2627

2728
- name: Run script
2829
run: npm run ${{ matrix.validation-script }}
@@ -43,10 +44,11 @@ jobs:
4344
- name: Set up Node
4445
uses: actions/setup-node@v4
4546
with:
47+
cache: npm
4648
node-version: ${{ matrix.node }}
4749

4850
- name: Install dependencies
49-
uses: bahmutov/npm-install@v1
51+
run: npm install
5052

5153
- name: Install ESLint v${{ matrix.eslint }}
5254
run: npm install --no-save --force eslint@${{ matrix.eslint }}

0 commit comments

Comments
 (0)