Skip to content

Bump react-dom from 18.3.1 to 19.0.0 #467

Bump react-dom from 18.3.1 to 19.0.0

Bump react-dom from 18.3.1 to 19.0.0 #467

Workflow file for this run

name: Check code quality
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
codecovAndSonarcloud:
runs-on: ubuntu-latest
steps:
- name: 1/6 | Checkout repo
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: 2/6 | Setup Node environment
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: 3/6 | Install depedencies
run: npm ci
- name: 4/6 | Run unit tests suite
run: npm run test:ci
- name: 5/6 | Run Codecov Uploader
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage-final.json
flags: unittests
fail_ci_if_error: true
verbose: true
- name: 6/6 | Run SonarCloud Scanner
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}