• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

clippingkk / web / #1207

21 Mar 2026 03:39PM UTC coverage: 0.518% (-0.004%) from 0.522%
#1207

push

web-flow
Merge pull request #174 from clippingkk/refactor/migrate-eslint-prettier-to-oxlint-oxfmt

refactor(lint): migrate from ESLint + Prettier to oxlint + oxfmt

30 of 448 branches covered (6.7%)

Branch coverage included in aggregate %.

2 of 3517 new or added lines in 323 files covered. (0.06%)

1 existing line in 1 file now uncovered.

147 of 33737 relevant lines covered (0.44%)

8.61 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/components/auth/github-standalone.tsx
1
'use client'
×
2
import { GithubClientID } from '@/constants/config'
×
3
import { useActionTrack } from '@/hooks/tracke'
×
NEW
4

×
5
import GithubLogo from '../icons/github.logo.svg'
×
6

×
7
interface GithubStandaloneLoginButtonProps {
×
8
  className?: string
×
9
}
×
10

×
11
export default function GithubStandaloneLoginButton({
×
12
  className,
×
13
}: GithubStandaloneLoginButtonProps) {
×
14
  const onGithubClick = useActionTrack('login:github')
×
15

×
16
  return (
×
17
    <a
×
18
      href={`https://github.com/login/oauth/authorize?client_id=${GithubClientID}&scope=user:email`}
×
19
      onClick={onGithubClick}
×
NEW
20
      className={`group relative flex h-16 w-full items-center justify-center rounded-xl border border-gray-200 bg-white px-6 no-underline shadow-sm transition-all duration-200 hover:scale-[1.02] hover:shadow-md dark:border-zinc-700 dark:bg-zinc-800 ${className || ''}`}
×
21
    >
×
NEW
22
      <div className="flex items-center justify-center gap-3">
×
NEW
23
        <GithubLogo className="h-5 w-5 transition-transform duration-200 group-hover:scale-110" />
×
NEW
24
        <span className="text-base font-medium text-gray-900 dark:text-zinc-50">
×
25
          Continue with GitHub
×
26
        </span>
×
27
      </div>
×
28
    </a>
×
29
  )
×
30
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc