Skip to content

Commit

Permalink
ci(ci.yml): fixed typo with indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Jan 13, 2021
1 parent bc024c5 commit 8a9c985
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ jobs:
name: lint
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js latest
uses: actions/setup-node@v2-beta
with:
node-version: "15"
- name: Run ESLint
run: npm run lint
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js latest
uses: actions/setup-node@v2-beta
with:
node-version: "15"
- name: Run ESLint
run: npm run lint

test-coverage:
name: Test on Node.js Latest
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js latest
uses: actions/setup-node@v2-beta
with:
node-version: "15"
- name: Build coverage
run: npm run test:coverage
- name: Run codecov
run: node ./node_modules/.bin/codecov
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js latest
uses: actions/setup-node@v2-beta
with:
node-version: "15"
- name: Build coverage
run: npm run test:coverage
- name: Run codecov
run: node ./node_modules/.bin/codecov

0 comments on commit 8a9c985

Please sign in to comment.