Skip to content

Commit a5b25ac

Browse files
committed
Fix Windows tests
1 parent 8126c58 commit a5b25ac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.eslintrc.base.js

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ module.exports = {
3232
},
3333
rules: {
3434
indent: "off",
35-
"linebreak-style": "off",
3635
"no-dupe-keys": "error",
3736
strict: "error",
3837
"prefer-spread": "off",

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313

1414
steps:
15+
- name: Set git to use LF
16+
run: |
17+
git config --global core.autocrlf false
18+
git config --global core.eol lf
19+
1520
- uses: actions/checkout@v2
1621

1722
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)