Skip to content

Commit 7cd7dd3

Browse files
committed
Use npm instead of yarn
1 parent 15b6f49 commit 7cd7dd3

4 files changed

Lines changed: 6885 additions & 2559 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
9-
108
steps:
119
- uses: actions/checkout@v6
1210
- uses: actions/setup-node@v6
1311
with:
1412
node-version: 24
15-
- name: yarn install
16-
run: yarn install
13+
- name: npm install
14+
run: npm ci
1715
- name: build
18-
run: yarn build
16+
run: npm run build
1917
env:
2018
CI: true
2119
- name: lint
22-
run: yarn lint
20+
run: npm run lint
2321
env:
2422
CI: true

0 commit comments

Comments
 (0)