File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 45
45
- name : Install dependencies
46
46
run : npm i
47
47
48
+ # for now only check the types of the server
49
+ # tsconfig isn't quite set up right to respect what vite accepts
50
+ # for the frontend code
51
+ - name : Check Types (Server)
52
+ run : npm run check-types:server
53
+
48
54
- name : Test
49
55
id : test
50
56
run : |
Original file line number Diff line number Diff line change 14
14
"build-lib" : " ./scripts/build-for-publish.sh" ,
15
15
"restore-lib" : " ./scripts/undo-build.sh" ,
16
16
"check-types" : " tsc" ,
17
+ "check-types:server" : " tsc --project tsconfig.publish.json --noEmit" ,
17
18
"test" : " NODE_ENV=test ts-mocha './test/**/*.test.js' --exit" ,
18
19
"test-coverage" : " nyc npm run test" ,
19
20
"test-coverage-ci" : " nyc --reporter=lcovonly --reporter=text npm run test" ,
Original file line number Diff line number Diff line change @@ -317,7 +317,8 @@ export class ConfigLoader extends EventEmitter {
317
317
cwd : process . cwd ( ) ,
318
318
env : {
319
319
// dont wait for credentials; the command should be sufficiently authed
320
- GIT_TERMINAL_PROMPT : 0 ,
320
+ // https://git-scm.com/docs/git#Documentation/git.txt-codeGITTERMINALPROMPTcode
321
+ GIT_TERMINAL_PROMPT : 'false' ,
321
322
...process . env ,
322
323
...( source . auth ?. type === 'ssh'
323
324
? {
You can’t perform that action at this time.
0 commit comments