2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-26 11:31:43 +00:00
Files
OpenAssetTools/.github/workflows/linting.yaml
T
Jan b6cebe2c67 chore: linting in separate ci step (#814)
* chore: lint ModMan UI in CI

* chore: do not lint in build step anymore

* chore: also do linting on main
2026-05-25 22:18:23 +00:00

56 lines
1.2 KiB
YAML

name: linting
on:
push:
branches:
- main
pull_request:
jobs:
check-clang-format-formatting:
name: Check clang-format formatting
runs-on: ubuntu-latest
container: ubuntu:24.04
defaults:
run:
shell: bash
steps:
- name: Install base packages
run: |
apt-get update
apt-get install -y wget tar git make curl
- name: Checkout repository
uses: actions/checkout@v6
- name: Configure clang
uses: ./.github/actions/configure-clang
with:
clang_version: 20
- name: Test formatting for all files
working-directory: ${{ github.workspace }}
run: ./scripts/check-format.sh
modman-linting:
name: Lint ModMan UI
runs-on: ubuntu-latest
container: ubuntu:24.04
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install node
uses: actions/setup-node@v6.4.0
with:
node-version: 24
- name: Lint UI
working-directory: ${{ github.workspace }}
run: |
npm install
npm run lint