Skip to content

ci(header): add actions to lint and build #1

ci(header): add actions to lint and build

ci(header): add actions to lint and build #1

Workflow file for this run

name: Header Code Quality
on:
push:
paths:
- 'IONOS/**'
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint Headers
run: npm run lint
continue-on-error: true
- name: Prettier
run: npm run format:check
continue-on-error: true