f59da74a3e
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
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:
|
|
check-metadata-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
- uses: bahmutov/npm-install@v1
|
|
with:
|
|
working-directory: app
|
|
- name: Prettier Check
|
|
run: npm run prettier:check
|
|
working-directory: app
|
|
validate-metadata:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker.io/zmkfirmware/zmk-dev-arm:3.0
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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
|
|
working-directory: app
|
|
run: west metadata check
|