Marc Cataford
540ce0bbbb
* test: add integration test on ts skip * chore: add test prefix to commit linter * build: shell access * build: lint commit to include first commit
7 lines
141 B
Bash
7 lines
141 B
Bash
#!/usr/bin/bash
|
|
|
|
yarn pack --out integration-build.tgz
|
|
|
|
for filename in $(find ./integration -type f -print); do
|
|
ts-node $filename;
|
|
done
|