Skip to content

Commit 1e81873

Browse files
authored
chore(deps): use npm ci instead of npm-install (#1037)
1 parent b4a8d85 commit 1e81873

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/check-dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-node@v3
2424
with:
2525
node-version: 20.5.0
26-
- uses: bahmutov/npm-install@v1
26+
- run: npm ci
2727
- run: npm run format
2828
- run: npm run build
2929

.github/workflows/check-markdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
- uses: bahmutov/npm-install@v1
16+
- run: npm ci
1717
- run: npm run check:markdown

.github/workflows/example-wait-on.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- name: Checkout
164164
uses: actions/checkout@v4
165165
- name: Install dependencies
166-
uses: bahmutov/npm-install@v1
166+
run: npm ci
167167
- name: Run ping from CLI
168168
run: node src/ping-cli https://example.cypress.io
169169

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Node.js minor version is aligned to
2020
# https://github.com/actions/runner/blob/main/src/Misc/externals.sh
2121
node-version: 20.5.0
22-
- uses: bahmutov/npm-install@v1
22+
- run: npm ci
2323
- run: npm run format
2424
- run: npm run build
2525
- run: npm test
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- name: Checkout
3737
uses: actions/checkout@v4
38-
- uses: bahmutov/npm-install@v1
38+
- run: npm ci
3939
# https://github.com/cycjimmy/semantic-release-action
4040
- name: Semantic Release
4141
uses: cycjimmy/semantic-release-action@v3

0 commit comments

Comments
 (0)