1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-28 11:00:05 +01:00

ran npm run format

This commit is contained in:
John Wesley Walker III 2024-03-12 15:44:30 +00:00
parent 5fd05b69b4
commit 3471f851f6
3 changed files with 6 additions and 4 deletions

View file

@ -1,7 +1,6 @@
import { GitVersion } from '../src/git-version'
import {GitVersion} from '../src/git-version'
import {MinimumGitSparseCheckoutVersion} from '../src/git-command-manager'
describe('git-version tests', () => {
it('basics', async () => {
let version = new GitVersion('')

View file

@ -13,7 +13,7 @@ import {GitVersion} from './git-version'
// Wire protocol v2 not supported before 2.18
// sparse-checkout not supported before 2.25
export const MinimumGitVersion = new GitVersion('2.18')
export const MinimumGitSparseCheckoutVersion = new GitVersion('2.25');
export const MinimumGitSparseCheckoutVersion = new GitVersion('2.25')
export interface IGitCommandManager {
branchDelete(remote: boolean, branch: string): Promise<void>

View file

@ -9,7 +9,10 @@ import * as path from 'path'
import * as refHelper from './ref-helper'
import * as stateHelper from './state-helper'
import * as urlHelper from './url-helper'
import {MinimumGitSparseCheckoutVersion, IGitCommandManager} from './git-command-manager'
import {
MinimumGitSparseCheckoutVersion,
IGitCommandManager
} from './git-command-manager'
import {IGitSourceSettings} from './git-source-settings'
export async function getSource(settings: IGitSourceSettings): Promise<void> {