Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
chore: add missing tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
hanspagel committed Jul 23, 2024
1 parent 8ed7203 commit 45b2ae3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ jobs:
with:
path: .turbo
key: turbo-${{ runner.os }}-node-${{ matrix.node-version }}
- name: Build packages
run: pnpm build:packages
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test:ci

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"dev": "pnpm --filter demo dev",
"bump": "CI=true pnpm run test && pnpm changeset version",
"types:check": "pnpm -r types:check"
"build": "turbo build",
"lint": "pnpm -r lint:check",
"lint:fix": "pnpm -r lint:fix",
"test": "vitest",
"types:check": "turbo --concurrency=100 types:check"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
Expand Down
10 changes: 7 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"lint:fix": {},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build"]
}
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"types:check": {}
}
}

0 comments on commit 45b2ae3

Please sign in to comment.