Skip to content

Commit

Permalink
Cleanup (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
w8r authored Aug 10, 2022
1 parent 18d6dcc commit 4b295d0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
uses: actions/checkout@v3

- name: Install dependencies
run: yarn
run: npm ci

- name: Generate Demo
run: yarn generate
run: npm run demo

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
uses: actions/checkout@master

- name: Install dependencies
run: yarn
run: npm ci

- name: Lint
run: yarn lint
run: npm run lint

- name: Test
run: yarn test
run: npm run test

- name: Build
run: yarn build
run: npm run build
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"license": "MIT",
"scripts": {
"dev": "vite --config ./playground/vite.config.ts",
"generate": "vite --config ./playground/vite.config.ts build",
"demo": "vite --config ./playground/vite.config.ts build",
"build": "tsc && unbuild",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "vitest --run",
Expand Down

0 comments on commit 4b295d0

Please sign in to comment.