Skip to content

Commit

Permalink
Attempt to disable auto crlf in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterGrimmeisen committed Jan 25, 2022
1 parent 6468f01 commit 9783ae3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,19 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Disable Auto CRLF
run: git config --global core.autocrlf false

- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache: 'yarn'

- name: Install deps (no cache)
- name: Install deps
run: yarn install --frozen-lockfile

- name: Build
Expand Down

0 comments on commit 9783ae3

Please sign in to comment.