Skip to content
Merged
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
11 changes: 10 additions & 1 deletion .github/workflows/test-docs-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,18 @@ jobs:

test-update-ocaml-node-script:
name: Test Update OCaml Node Script
runs-on: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'test-doc-scripts')
strategy:
matrix:
os: [macos-latest, ubuntu-latest]

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history

- name: Test update-ocaml-node script reproducibility
run: |
# Save the current script to use with the old commit state
Expand Down
Loading