Skip to content

Created algorithm for determining required inputs and viability. #9

Created algorithm for determining required inputs and viability.

Created algorithm for determining required inputs and viability. #9

Workflow file for this run

name: Test and SonarCloud analysis
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
test-and-analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests and generate coverage
run: npm run test:coverage
# - name: SonarCloud Scan
# uses: SonarSource/sonarcloud-github-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}