谢亚昕 1 month ago
parent
commit
283d06ba82
  1. 6
      .changeset/config.json
  2. 34
      .github/workflows/ci.yml
  3. 6
      package.json
  4. 9
      vitest.shared.ts

6
.changeset/config.json

@ -1,10 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"changelog": ["@changesets/changelog-github", { "repo": "npmrun/xyx-utils" }],
"commit": true,
"fixed": [],
"linked": [],
"access": "restricted",
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": [

34
.github/workflows/ci.yml

@ -0,0 +1,34 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test
- name: Check coverage
run: pnpm run coverage
- name: Build packages
run: pnpm build

6
package.json

@ -3,7 +3,11 @@
"type": "module",
"name": "xyx-utils",
"version": "1.0.0",
"description": "",
"description": "一个模块化的工具库集合",
"repository": {
"type": "git",
"url": "https://github.com/npmrun/xyx-utils"
},
"scripts": {
"build": "tsx scripts/build.mts build",
"dev": "tsx scripts/build.mts dev",

9
vitest.shared.ts

@ -30,7 +30,14 @@ export default defineConfig({
"packages/node/src/**",
"packages/xyx-utils/src/**",
],
exclude: [...coverageConfigDefaults.exclude, "packages/**/docs/**", "packages/**\/test?(s)/**"]
exclude: [...coverageConfigDefaults.exclude, "packages/**/docs/**", "packages/**\/test?(s)/**"],
thresholds: {
branches: 80,
functions: 80,
lines: 80,
statements: 80
}
},
testTimeout: 10000
},
});

Loading…
Cancel
Save