From cb443f81f5b9f8509fd5bd11d03b89561a573cff Mon Sep 17 00:00:00 2001 From: Christian Kaisermann Date: Sat, 27 Mar 2021 17:10:10 -0300 Subject: [PATCH] chore: fix action --- .github/workflows/ci.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58086b5..d44ce89 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 13.7.0 + - name: Install Dependencies uses: bahmutov/npm-install@v1 + - run: 'npm run lint' Tests: @@ -17,17 +22,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [13.2.0] + node-version: [13.7.0] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - run: git config --global core.autocrlf false - uses: actions/checkout@v2 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + - name: Install Dependencies uses: bahmutov/npm-install@v1 + - run: npm run test:ci env: CI: true