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 4545 - name : Install dependencies
4646 run : npm i
4747
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+
4854 - name : Test
4955 id : test
5056 run : |
Original file line number Diff line number Diff line change 1414 "build-lib" : " ./scripts/build-for-publish.sh" ,
1515 "restore-lib" : " ./scripts/undo-build.sh" ,
1616 "check-types" : " tsc" ,
17+ "check-types:server" : " tsc --project tsconfig.publish.json --noEmit" ,
1718 "test" : " NODE_ENV=test ts-mocha './test/**/*.test.js' --exit" ,
1819 "test-coverage" : " nyc npm run test" ,
1920 "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 {
317317 cwd : process . cwd ( ) ,
318318 env : {
319319 // 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' ,
321322 ...process . env ,
322323 ...( source . auth ?. type === 'ssh'
323324 ? {
You can’t perform that action at this time.
0 commit comments