Skip to content

Commit

Permalink
Improve CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
krismuniz committed Dec 31, 2019
1 parent c773087 commit 0b922eb
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,20 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test
- run: npm run lint
- run: npx report --reporter=text-lcov | npx coveralls

- run: node --version
- run: npm --version

- name: Install Dependencies
run: npm ci

- name: Run Tests
run: npm test

- name: Run Lint
run: npm run lint

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0b922eb

Please sign in to comment.