Skip to content

Commit bc6d0cc

Browse files
committed
replace yarn with npm
1 parent 2d43bba commit bc6d0cc

4 files changed

Lines changed: 6366 additions & 3060 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,15 @@ jobs:
2121
uses: actions/setup-node@v6
2222
with:
2323
node-version: '24'
24-
cache: 'yarn'
2524

2625
- name: Install dependencies
27-
run: yarn install --frozen-lockfile
26+
run: npm ci
2827

2928
- name: Lint
30-
run: yarn lint
29+
run: npm run lint
3130

3231
- name: Type Check
33-
run: yarn type-check
32+
run: npm run type-check
3433

3534
- name: Build
36-
run: yarn build-only
35+
run: npm run build-only

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
setup:
2-
yarn install
2+
npm install
33

44
build:
5-
yarn build --base=/app/
5+
npm run build -- --base=/app/
66

77
run:
8-
yarn dev
8+
npm run dev
99

1010
clean:
1111
rm -rf dist/ node_modules/

0 commit comments

Comments
 (0)