Skip to content

style: Apply linting #53

style: Apply linting

style: Apply linting #53

Workflow file for this run

name: Check sourcecode is formatted
on:
push:
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "latest"
- run: npm ci
- run: npx prettier . --check
- run: npm run validate