Skip to content

Commit

Permalink
feat: detect cloudflare_pages provider (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniFoldi authored Aug 12, 2022
1 parent 6f10436 commit 411b3c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export type ProviderName =
'' | 'appveyor' | 'azure_pipelines' | 'azure_static' | 'appcircle' | 'bamboo' |
'bitbucket' | 'bitrise' | 'buddy' | 'buildkite' | 'circle' | 'cirrus' |
'bitbucket' | 'bitrise' | 'buddy' | 'buildkite' | 'circle' | 'cirrus' | 'cloudflare_pages' |
'codebuild' | 'codefresh' | 'drone' | 'drone' | 'dsari' | 'github_actions' |
'gitlab' | 'gocd' | 'layerci' | 'hudson' | 'jenkins' | 'magnum' |
'netlify' | 'nevercode' | 'render' | 'sail' | 'semaphore' |
Expand All @@ -23,6 +23,7 @@ const providers: InternalProvider[] = [
['BUILDKITE'],
['CIRCLE', 'CIRCLECI'],
['CIRRUS', 'CIRRUS_CI'],
['CLOUDFLARE_PAGES', 'CF_PAGES', { ci: true }],
['CODEBUILD', 'CODEBUILD_BUILD_ARN'],
['CODEFRESH', 'CF_BUILD_ID'],
['DRONE'],
Expand Down

0 comments on commit 411b3c0

Please sign in to comment.