Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Feb 16, 2024
1 parent 965f8d9 commit 90d6618
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ jobs:

- run: deno coverage cov_profile --lcov --output=cov_profile.lcov

- uses: coverallsapp/github-action@v1
- uses: coverallsapp/github-action@v2
with:
path-to-lcov: cov_profile.lcov
parallel: true
flag-name: ${{ matrix.platform.id }}
flag-name: ${{ matrix.os }}

upload-coverage:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v1
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true

Expand Down
6 changes: 4 additions & 2 deletions src/hooks/useConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,10 @@ function git(_prefix: Path, PATH?: string): Path | undefined {
case "linux":
return rv
case "windows":
//FIXME this is GitHub Actions specific
return new Path('C:\Program Files\Git\cmd\git.exe')
if (PATH) {
//FIXME this is GitHub Actions specific
return new Path('C:\Program Files\Git\cmd\git.exe')
}
}
})()?.join("bin/git")
}
Expand Down

0 comments on commit 90d6618

Please sign in to comment.