Skip to content

Commit 4b295d0

Browse files
authored
Cleanup (#5)
1 parent 18d6dcc commit 4b295d0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
uses: JamesIves/[email protected]

.github/workflows/verify.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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",

0 commit comments

Comments
 (0)