2021-03-28 11:51:04 +11:00
|
|
|
name: Hardware Metadata Validation
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/hardware-metadata-validation.yml"
|
|
|
|
- "schema/hardware-metadata.schema.json"
|
|
|
|
- "app/boards/**/*.zmk.yml"
|
|
|
|
- "app/scripts/west_commands/metadata.py"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/hardware-metadata-validation.yml"
|
|
|
|
- "schema/hardware-metadata.schema.json"
|
|
|
|
- "app/boards/**/*.zmk.yml"
|
|
|
|
- "app/scripts/west_commands/metadata.py"
|
|
|
|
|
|
|
|
jobs:
|
2021-09-11 02:33:39 +10:00
|
|
|
check-metadata-format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-22 15:51:29 +11:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/checkout@v3
|
2021-09-11 02:33:39 +10:00
|
|
|
- uses: bahmutov/npm-install@v1
|
|
|
|
with:
|
|
|
|
working-directory: app
|
|
|
|
- name: Prettier Check
|
|
|
|
run: npm run prettier:check
|
|
|
|
working-directory: app
|
2021-03-28 11:51:04 +11:00
|
|
|
validate-metadata:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2021-12-12 14:39:41 +11:00
|
|
|
image: docker.io/zmkfirmware/zmk-dev-arm:3.0
|
2021-03-28 11:51:04 +11:00
|
|
|
steps:
|
2022-10-22 15:51:29 +11:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-28 11:51:04 +11:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pip install -r app/scripts/requirements.txt
|
|
|
|
- name: West init
|
|
|
|
run: west init -l app
|
|
|
|
- name: Update modules (west update)
|
|
|
|
run: west update
|
|
|
|
- name: Export Zephyr CMake package (west zephyr-export)
|
|
|
|
run: west zephyr-export
|
|
|
|
- name: Validate Hardware Metadata
|
2021-09-11 02:33:39 +10:00
|
|
|
working-directory: app
|
|
|
|
run: west metadata check
|