Skip to content

Commit

Permalink
Try to fix line-break issue in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Aug 25, 2019
1 parent f338855 commit b307406
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/nodejs.yml
Expand Up @@ -12,16 +12,19 @@ jobs:
node-version: [6.x, 10.x]

steps:
- uses: actions/checkout@v1
- name: Configure git line-breaks
run: git config --global core.autocrlf false
- name: Checkout repository
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Check Node Version
run: IF ${{ matrix.node-version }} LSS 8 npm i npm@5 -g
- name: npm install
- name: Install dependencies
run: npm ci --ignore-scripts
- name: npm test
- name: Run tests
run: npm test
env:
CI: true

0 comments on commit b307406

Please sign in to comment.