We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d115e9a commit d6515e8Copy full SHA for d6515e8
2 files changed
README.md
@@ -29,6 +29,12 @@ pnpm lint
29
pnpm scalar-lint
30
```
31
32
+or with `devenv`
33
+
34
+```bash
35
+devenv tasks run api:check
36
+```
37
38
### Format the yaml files
39
40
```shell
devenv.nix
@@ -24,4 +24,16 @@
24
cd $DEVENV_ROOT/doc
25
pnpm install
26
'';
27
28
+ tasks = {
+ "api:check" = {
+ exec = ''
+ pnpm run spectral
+ pnpm run lint
+ pnpm run scalar-lint
+ pnpm run check-format
+ '';
+ cwd = "doc";
+ };
}
0 commit comments