Skip to content

Commit

Permalink
fix: set ci: false for unkown envs
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 5, 2021
1 parent 504c485 commit 2d5a646
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,13 @@ export function detectProvider(env: Record<string, string>): ProviderInfo {
// Stackblitz / Webcontainer
if (env.SHELL && env.SHELL === '/bin/jsh') {
return {
name: 'stackblitz'
name: 'stackblitz',
ci: false
}
}

return {
name: ''
name: '',
ci: false
}
}

0 comments on commit 2d5a646

Please sign in to comment.