File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
1212 uses : actions/checkout@v3
1313
1414 - name : Install dependencies
15- run : yarn
15+ run : npm ci
1616
1717 - name : Generate Demo
18- run : yarn generate
18+ run : npm run demo
1919
2020 - name : Deploy 🚀
2121
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ jobs:
2626 uses : actions/checkout@master
2727
2828 - name : Install dependencies
29- run : yarn
29+ run : npm ci
3030
3131 - name : Lint
32- run : yarn lint
32+ run : npm run lint
3333
3434 - name : Test
35- run : yarn test
36-
35+ run : npm run test
36+
3737 - name : Build
38- run : yarn build
38+ run : npm run build
Original file line number Diff line number Diff line change 1010 "license" : " MIT" ,
1111 "scripts" : {
1212 "dev" : " vite --config ./playground/vite.config.ts" ,
13- "generate " : " vite --config ./playground/vite.config.ts build" ,
13+ "demo " : " vite --config ./playground/vite.config.ts build" ,
1414 "build" : " tsc && unbuild" ,
1515 "lint" : " eslint --ext .ts --ignore-path .gitignore ." ,
1616 "test" : " vitest --run" ,
You can’t perform that action at this time.
0 commit comments