build: remove build, format, and lint scripts

Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
This commit is contained in:
Alfi Maulana 2025-06-10 12:58:31 +07:00
parent 0f86aa61f6
commit f479ff37f9
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4
2 changed files with 6 additions and 6 deletions

View File

@ -19,13 +19,16 @@ jobs:
run: pnpm install
- name: Check Formatting
run: pnpm format && git diff --exit-code HEAD
run: pnpm prettier --check .
- name: Check Lint
run: pnpm lint
run: pnpm eslint
- name: Check Types
run: pnpm tsc --noEmit
- name: Test Action
run: pnpm test
- name: Build Action
run: pnpm build && git diff --exit-code HEAD
run: pnpm rollup -c && git diff --exit-code dist

View File

@ -3,9 +3,6 @@
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c",
"format": "prettier --write --cache .",
"lint": "eslint",
"test": "vitest run"
},
"dependencies": {