Skip to content

Create initial OpenAPI specification #11

Create initial OpenAPI specification

Create initial OpenAPI specification #11

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/iron
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Lint ESLint
run: npm run lint:eslint
- name: Lint Prettier
run: npm run lint:prettier
- name: Lint Stylelint
run: npm run lint:stylelint