Skip to content

329 td 44 small edits based on review of pr 276 #273

329 td 44 small edits based on review of pr 276

329 td 44 small edits based on review of pr 276 #273

Workflow file for this run

name: Code style
on:
pull_request:
workflow_dispatch:
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install dependencies
run: npm ci
- name: Run Stylelint
run: npm run stylelint:check
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npm run prettier:check