Skip to content

Commit

Permalink
chore: Update CI workflow and npm configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymousRecords committed Aug 20, 2024
1 parent 66adb96 commit 08e0072
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: pnpm build

- name: Test
run: pnpm test
run: pnpm turbo run test --filter=@chapdo/type-safe-array

lint:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"build": "tsup src/index.ts --minify --dts --format cjs,esm --out-dir dist",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "vitest"
},
"exports": {
"types": "./dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"cache": false,
"persistent": true
},
"test": {}
"test": {
"outputs": []
}
}
}

0 comments on commit 08e0072

Please sign in to comment.