Skip to content

Commit 626076e

Browse files
committed
ci: use linux style line endings
1 parent a97508e commit 626076e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ jobs:
1010
runs-on: windows-latest
1111

1212
steps:
13+
- name: Set Git to use LF
14+
run: |
15+
git config --global core.autocrlf false
16+
git config --global core.eol lf
1317
- uses: actions/checkout@v4
1418
- name: Install pnpm
1519
uses: pnpm/action-setup@v4

shared/getEnvironmentVariables.ts

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export function getEnvironmentVariables<T extends string>(...names: T[]) {
1616
import("winax")
1717
.then((winax) => {
1818
const wsh = new winax.Object("WScript.Shell");
19-
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
2019
wsh["Popup"](
2120
"Missing environment variable(s): " + missing.join(", "),
2221
undefined,

0 commit comments

Comments
 (0)