feat(cmake): add ixm_property
command to the public runtime
#114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
types: [opened, synchronize, edited] | |
jobs: | |
skip: | |
name: Skip Duplicate Actions | |
runs-on: ubuntu-latest | |
outputs: | |
should-skip: ${{steps.sda.outputs.should_skip}} | |
steps: | |
- uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5 | |
id: sda | |
title: | |
runs-on: ubuntu-latest | |
name: Check PR Title | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4 | |
with: | |
check-latest: true | |
node-version: 'lts/*' | |
cache: npm | |
- run: npm ci | |
- run: jq -r '.pull_request.title' "${GITHUB_EVENT_PATH}" > PR_TITLE | |
- run: npx commitlint --edit=PR_TITLE | |
# TODO: move this to workflow_call capable runs? | |
# | |
# bsds: | |
# runs-on: ubuntu-latest | |
# needs: [title] | |
# strategy: | |
# matrix: | |
# os: | |
# - { name: dragonflybsd } | |
# - { name: freebsd } | |
# - { name: openbsd } | |
# - { name: netbsd } | |
# # TODO: Branch for each VM step. | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: vmactions/${{ matrix.os.name }}-vm@v1 | |