Skip to content

Needs accounting partial score for a criteria without weight #3677

Needs accounting partial score for a criteria without weight

Needs accounting partial score for a criteria without weight #3677

Workflow file for this run

name: Pull Request Build
on:
pull_request:
branches:
- main
paths:
- '**/**.json'
- '**/**.js'
- '**/**.jsx'
- '**/**.ts'
- '**/**.tsx'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
- uses: actions/cache@v4
with:
path: node_modules
key: npm-deps-${{ hashFiles('package-lock.json') }}
restore-keys: |
npm-deps-${{ hashFiles('package-lock.json') }}
- name: Setup packages
run: npm ci
- name: Lint
run: npm run lint
- name: Unit
run: npm run test
- name: type-check
run: npm run type-check