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
13 changes: 12 additions & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,25 @@ on:
type: number
required: false
default: 15
runner:
description: >-
Label(s) the job runs on. Defaults to GitHub-hosted
`ubuntu-latest`; set to a self-hosted label (e.g. `self-hosted`)
to run on an org/repo self-hosted runner instead — useful when
GitHub-hosted minutes are exhausted. A single label string;
callers typically wire this to a repo variable so it can be
toggled without editing the workflow.
type: string
required: false
default: "ubuntu-latest"

permissions:
contents: read

jobs:
ci:
name: Node CI
runs-on: ubuntu-latest
runs-on: ${{ inputs.runner }}
timeout-minutes: ${{ inputs.timeout-minutes }}
defaults:
run:
Expand Down
Loading