Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions github-actions/npm/checkout-and-setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ inputs:
runs:
using: composite
steps:
# Git checkout converts to CRLF by default. This can cause e.g. the Aspect lock
# files to differ. See: https://github.com/actions/checkout/issues/135.
# It's generally a good idea to prevent such automatic transforms.
- run: |
git config --global core.autocrlf false
git config --global core.eol lf
shell: bash
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
filter: blob:none
Expand Down
Loading