Skip to content

Make objectives types configurable #314

Make objectives types configurable

Make objectives types configurable #314

Workflow file for this run

name: pr-quality
on:
pull_request:
paths-ignore:
- "docs/"
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Verify Code Quality
runs-on: ubuntu-latest
steps:
# Cloning
- uses: actions/checkout@v3
# Setup and Caching
- name: Use latest Node.js LTS version
uses: actions/setup-node@v3
with:
node-version: lts/*
# NPM Cache using all package-lock files as hash
cache: "npm"
cache-dependency-path: "**/package-lock.json"
# Dependencies
- name: SynTest - Install Dependencies
run: npm ci
# Formatting
- name: SynTest - Run Formatter
run: npm run format:check
# Linting
- name: SynTest - Run Linter
run: npm run lint