chore(deps): bump react-devtools-core from 4.24.7 to 4.28.4 #128
Workflow file for this run
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
name: Check Code Quality | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
lint-and-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Use Node.js Version 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.14.x | |
- name: Use JDK Version 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Type check | |
run: yarn type-check | |
- name: Lint | |
run: yarn lint | |
- name: Check circular dependencies | |
run: yarn circular | |
- name: Run Jest Unit Tests | |
run: yarn test | |
- name: Typescript build | |
run: yarn build | |
- name: SonarCloud Scan Typescript | |
run: yarn sonar | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Build Gradle and analyze | |
run: yarn build |