Add support to Node20 (#58) #74
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
# Summary: | |
# Run Unit and coverage tests, then upload it to Code Climate dashboard | |
# | |
# See https://github.com/actions/checkout https://github.com/actions/checkout/releases/tag/v3 | |
# See https://github.com/paambaati/codeclimate-action https://github.com/paambaati/codeclimate-action/tree/v3.2.0 | |
name: Update Code Climate test coverage | |
on: | |
push: | |
branches: | |
- main # Change this branch name by your CodeClimate "main" branch use | |
jobs: | |
# Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs | |
# Ex: Necessary to run `yarn test:coverage` | |
setup-environment: | |
name: Setup deployment environment (Ubuntu 22.04 - Node 18.x) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Installing node.js | |
uses: actions/setup-node@v3 # Used to install node environment - XXX https://github.com/actions/setup-node | |
with: | |
node-version: 18 | |
run-tests-coverage: | |
name: Run tests coverage and send report to Code Climate | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing dependencies | |
run: yarn install | |
- uses: paambaati/codeclimate-action@v3.2.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". | |
with: | |
coverageCommand: yarn test:coverage |