File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : check
2+
3+ on :
4+ pull_request :
5+ workflow_dispatch :
6+
7+ jobs :
8+ check :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v4
12+ - uses : pnpm/action-setup@v4
13+ with :
14+ run_install : false
15+ - uses : actions/setup-node@v4
16+ with :
17+ cache : pnpm
18+ node-version : latest
19+ registry-url : https://registry.npmjs.org
20+
21+ - run : pnpm install
22+ - run : pnpm lint
23+ - run : pnpm build
24+ - run : pnpm test
Original file line number Diff line number Diff line change 77 - denoland
88 - ependencies
99 - foxts
10+ - eslintcache
1011 - importantimport
1112 - lume
1213 - lumeland
Original file line number Diff line number Diff line change 55 "private" : true ,
66 "packageManager" : " pnpm@10.9.0" ,
77 "scripts" : {
8+ "build" : " pnpm -r build" ,
9+ "build:packages" : " pnpm -rF \" ./packages/*\" build" ,
810 "bump" : " bumpp" ,
911 "dev" : " pnpm -rF @moeru/std-docs dev" ,
10- "lint" : " moeru-lint --flag unstable_native_nodejs_ts_config"
12+ "lint" : " moeru-lint --flag unstable_native_nodejs_ts_config" ,
13+ "test" : " pnpm -r --workspace-concurrency=1 test"
1114 },
1215 "devDependencies" : {
1316 "@antfu/eslint-config" : " ^4.12.0" ,
You can’t perform that action at this time.
0 commit comments