Skip to content

Change loading wait timer from 200ms to 300ms #18

Change loading wait timer from 200ms to 300ms

Change loading wait timer from 200ms to 300ms #18

Workflow file for this run

name: Sonar
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Node Modules
run: npm ci
- name: Coverage
env:
VITE_API_URL: ${{secrets.VITE_API_URL}}
run: npm run test:coverage
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v1.8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}