this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(ts): add runtime values diffing and fix runtime testing

+8 -2
+8 -2
.gitlab-ci.yml
··· 42 42 done 43 43 - | 44 44 mkdir -p testarea; cd testarea 45 - npm init 45 + npm init -y 46 + jq '.type = "module"' < package.json > package.json.new 47 + mv package.json.new package.json 46 48 npm add -S git+$CI_PROJECT_URL#$CI_COMMIT_HASH 47 49 echo "import * as notella from '@inp-net/notella'; console.log(notella)" > index.js 48 - node index.js 50 + node index.js > lib.txt 51 + if ! diff -q lib.txt ../typescript/lib.txt; then 52 + diff lib.txt ../typescript/lib.txt 53 + echo Runtime library has different values, re-run just gen_typescript and commit the changes 54 + fi 49 55 50 56 test:up-to-date-prisma-schema: 51 57 image: registry.inpt.fr/inp-net/images/go-just:1.23.5-1.39.0