Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: clang-format check
on: [check_run, pull_request, push]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
formatting-check:
name: formatting check
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: cmake
on: [check_run, push, pull_request]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
cmake-publish:
runs-on: ${{ matrix.os }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: meson build and test
run-name: update pushed to ${{ github.ref }}
on: [check_run, push, pull_request]

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
meson-publish:
runs-on: ${{ matrix.os }}
Expand All @@ -17,6 +20,8 @@ jobs:

- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: meson build
uses: BSFishy/meson-build@v1.0.3
Expand All @@ -41,6 +46,8 @@ jobs:

- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: meson build
uses: BSFishy/meson-build@v1.0.3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-project-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
description: 'next soversion (e.g., 28). leave blank to keep current.'
required: false

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
bump-and-verify:
runs-on: ubuntu-latest
Expand Down
Loading