-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace CodeClimate with CodeCov
TODO: add back code-climate for transition
- Loading branch information
1 parent
ab42e13
commit 69c444c
Showing
3 changed files
with
14 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,11 @@ jobs: | |
run: yarn install | ||
- name: Run yarn test | ||
run: yarn test | ||
- name: Cache test coverage | ||
uses: actions/cache@v3 | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
path: ${{ github.workspace }}/app/javascript/coverage/lcov.info | ||
key: coverage-js-cache-${{ github.sha }} | ||
files: ${{ github.workspace }}/app/javascript/coverage/lcov.info | ||
flags: javascript | ||
env: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
slug: sanger/limber |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,11 @@ jobs: | |
run: bin/setup | ||
- name: Run rspec | ||
run: bundle exec rspec | ||
- name: Cache test coverage | ||
uses: actions/cache@v3 | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
path: ${{ github.workspace }}/lcov.info | ||
key: coverage-ruby-cache-${{ github.sha }} | ||
files: ${{ github.workspace }}/lcov.info | ||
flags: ruby | ||
env: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
slug: sanger/limber |
This file was deleted.
Oops, something went wrong.