Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ jobs:
- name: Build packages
run: pnpm build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
packages/icons/dist/**
packages/core/dist/**
packages/hooks/dist/**

eslint:
name: ESLint
runs-on: ubuntu-latest
Expand All @@ -61,12 +52,6 @@ jobs:
- name: Install
uses: ./.github/composite/install

- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: packages

- name: Run typecheck
run: pnpm typecheck

Expand Down Expand Up @@ -94,11 +79,5 @@ jobs:
- name: Install
uses: ./.github/composite/install

- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build-artifacts
path: packages

- name: Run Vitest
run: pnpm test
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"url": "https://github.com/goorm-dev/vapor-ui/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.mjs",
"build": "rollup -c rollup.config.mjs",
"lint": "eslint ./src",
"format": "prettier --write \"./src/**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"./src/**/*.{ts,tsx,md}\"",
Expand Down
Loading