Skip to content

Commit 6391775

Browse files
committed
chore: update CI workflow to use npm commands
- Replaced yarn commands with npm equivalents in the GitHub Actions workflow for consistency and improved dependency management.
1 parent 37cd12f commit 6391775

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
uses: actions/setup-node@v1
1616
with:
1717
node-version: ${{ matrix.node }}
18-
- run: yarn install
19-
- run: yarn lint
20-
- run: yarn test
18+
- run: npm install
19+
- run: npm run lint
20+
- run: npm run test

0 commit comments

Comments
 (0)