Skip to content

Commit 42fa10b

Browse files
committed
Use npm instead of yarn in lint workflow for consistency
The build workflow (publish-docs.yml) uses npm ci, so the lint workflow should match to keep CI consistent.
1 parent 6c856fb commit 42fa10b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 20
22-
cache: yarn
23-
2422
- name: Install dependencies
25-
run: yarn install --frozen-lockfile
23+
run: npm ci
2624

2725
- name: Lint
28-
run: yarn lint
26+
run: npm run lint

0 commit comments

Comments
 (0)