You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uses: actions/setup-node@v2 # Used to install node environment - XXX https://github.com/actions/setup-node
with:
node-version: '14.x'# Use the same node.js version as the one Vercel's uses (currently node14.x)
run-tests-coverage:
name: Run tests coverage and send report to Code Climate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Installing dependencies
run: yarn install
- uses: paambaati/codeclimate-action@v2.6.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} # XXX Define this secret in "Github repo > Settings > Secrets", you can get it from Code Climate in "Repo settings > Test coverage".