-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·24 lines (20 loc) · 903 Bytes
/
test.sh
File metadata and controls
executable file
·24 lines (20 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# Build the binary
bash ./build.sh
cd example
../query-projects info
../query-projects sync
../query-projects pull
../query-projects run --script scripts/do-they-have-a-readme.ts --output json,csv
../query-projects run --script scripts/does-the-project-have-a-linter.ts --output csv
../query-projects run --script scripts/how-activily-maintained-is-the-project.ts --output md
../query-projects run --script scripts/return-the-path-to-every-markdown-file-in-the-project.ts --output csv
../query-projects run --script scripts/what-version-of-package-is-being-used.ts typescript
../query-projects run --script scripts/which-test-framework-is-being-used.ts
../query-projects run --script scripts/get-compiler-options-from-tsconfig.ts
../query-projects plan plans/test.lua
# Run all scripts in one project
cd projects/ai
../../../query-projects run --all
cd ../../
../query-projects run --all