Skip to content

Feat: Sonar setup added to measure UT coverage #9

Feat: Sonar setup added to measure UT coverage

Feat: Sonar setup added to measure UT coverage #9

Workflow file for this run

name: Validate
on:
pull_request:
jobs:
lint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: run eslint
run: yarn lint
tsc:
name: Run tsc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: run tsc
run: yarn tsc
build:
name: Run Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: run build
run: yarn build