There was an error while loading. Please reload this page.
1 parent 2d43bba commit bc6d0ccCopy full SHA for bc6d0cc
4 files changed
.github/workflows/main.yml
@@ -21,16 +21,15 @@ jobs:
21
uses: actions/setup-node@v6
22
with:
23
node-version: '24'
24
- cache: 'yarn'
25
26
- name: Install dependencies
27
- run: yarn install --frozen-lockfile
+ run: npm ci
28
29
- name: Lint
30
- run: yarn lint
+ run: npm run lint
31
32
- name: Type Check
33
- run: yarn type-check
+ run: npm run type-check
34
35
- name: Build
36
- run: yarn build-only
+ run: npm run build-only
Makefile
@@ -1,11 +1,11 @@
1
setup:
2
- yarn install
+ npm install
3
4
build:
5
- yarn build --base=/app/
+ npm run build -- --base=/app/
6
7
run:
8
- yarn dev
+ npm run dev
9
10
clean:
11
rm -rf dist/ node_modules/
0 commit comments