Skip to content

Side drawer fucntionality (#104) #221

Side drawer fucntionality (#104)

Side drawer fucntionality (#104) #221

Workflow file for this run

name: Build
on:
push:
branches:
- deploy
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v3
with:
node-version: 16.17.1
- name: Install pnpm
run: npm i [email protected] -g
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Test and coverage
run: npm run coverage
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}