Skip to content

Commit

Permalink
chore(ci): Set core.autoCRLF -> true so Windows stops failing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
evocateur committed Sep 13, 2018
1 parent 96e1c00 commit fd62753
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions azure-pipelines.yml
Expand Up @@ -19,9 +19,14 @@ steps:
versionSpec: $(node_version)
displayName: "Install Node.js"

- script: git config --global user.email test@example.com
- script: git config --global user.name "Tester McPerson"
- script: npm -g i npm@latest --loglevel warn
- script: |
git config --global core.autocrlf true
git config --global user.email test@example.com
git config --global user.name "Tester McPerson"
displayName: "Configure git"
- script: npm config set loglevel warn
- script: npm -g i npm@latest
- script: npm -g i yarn@latest
- script: npm ci
- script: npm run ci

0 comments on commit fd62753

Please sign in to comment.