Skip to content

Merge pull request #419 from rich-b/rich/dimensionSelectionRing #305

Merge pull request #419 from rich-b/rich/dimensionSelectionRing

Merge pull request #419 from rich-b/rich/dimensionSelectionRing #305

Workflow file for this run

name: Main Sonar
# This action runs when a branch has been merged to main.
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies 📦
run: yarn install
- name: Lint 🧼
run: yarn lint
- name: Test 🧪
run: yarn test
- name: SonarCloud 🔬
uses: sonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}