Skip to content

Commit eada669

Browse files
committed
Disable autocrlf for Windows in GitHub Actions
1 parent 38431ee commit eada669

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/nodejs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- name: Set git to not change EoL
15+
run: |
16+
git config --global core.autocrlf false
17+
- uses: actions/checkout@v2
1518
- name: Use Node.js 12.x
1619
uses: actions/setup-node@v1
1720
with:

0 commit comments

Comments
 (0)