Skip to content

Add sonarcloud to pull request pipeline #583

Add sonarcloud to pull request pipeline

Add sonarcloud to pull request pipeline #583

Workflow file for this run

name: Pull request
on: pull_request
jobs:
build:
name: Pull request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Sonar analysis
uses: sonarsource/sonarcloud-github-action@master
with:
projectBaseDir: .
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- name: Run linting
run: npm run lint
- name: Run tests
run: npm test
- name: Run backstop
run: npm run backstop:ci