Skip to content

Commit

Permalink
fix: Adding testing during release for coveralls
Browse files Browse the repository at this point in the history
Adding testing step during releases to get coverage for coveralls
Also removed the explicit npm build step as semantic-release already builds
  • Loading branch information
georgebabey committed Nov 19, 2020
1 parent ec22ab4 commit b6c9181
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
node-version: 12
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Coveralls
run: npm run coveralls
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
run: npm run semantic-release
- name: Coveralls
run: npm run coveralls

0 comments on commit b6c9181

Please sign in to comment.