Skip to content

Commit 18f474a

Browse files
committed
fix: remove runme
1 parent b3c7407 commit 18f474a

File tree

6 files changed

+11
-254
lines changed

6 files changed

+11
-254
lines changed

.github/workflows/on-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
rm -rf ./**/node_modules/
2222
yarn install
2323
yarn build
24-
- name: Test docs
24+
- name: Test docs examples
2525
run: |
2626
cd docs
27-
yarn test:docs
27+
yarn test:examples
2828
2929
install-build:
3030
uses: ./.github/workflows/build-lint.yml

docs/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Note: links that are to be expanded must have text \[example]
2727

2828
* To execute the scripts within `/examples` as tests: `yarn test:examples`
2929
* To build the documentation by expanding examples: `yarn build`
30-
* To execute code from the built documentation (build check): `yarn test:docs`
3130

3231

3332

docs/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"type": "module",
55
"version": "1.0.0",
66
"scripts": {
7-
"test:docs": "yarn runme run --all --category example --skip-prompts",
87
"test:examples": "ts-node-test examples/",
98
"build": "find . -name \"*.md\" -type f -maxdepth 1 ! -name \"README.md\" -delete && tsup builddocs.ts && node dist/builddocs.cjs"
109
},
@@ -14,7 +13,6 @@
1413
},
1514
"devDependencies": {
1615
"expect": "^29.7.0",
17-
"runme": "^3.0.2",
1816
"ts-node-test": "^0.4.3"
1917
}
2018
}

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"test:unit": "turbo test:unit",
1414
"test:integration": "turbo test:integration",
1515
"format": "turbo format",
16-
"test:docs": "turbo test:docs",
1716
"test:examples": "turbo test:examples",
1817
"merge-coverage": "ts-node scripts/merge-coverage.ts",
1918
"generate:apidocs": "typedoc --options typedoc.json --logLevel Verbose"

turbo.json

-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
"dependsOn": ["^build"]
2222
},
2323
"format": {},
24-
"test:docs": {
25-
"dependsOn": ["^build"]
26-
},
2724
"test:examples": {
2825
"dependsOn": ["^build"]
2926
}

0 commit comments

Comments
 (0)