commit 7de83e3ef898b3f82aa9b476812f51c39d7dc702
parent 0f42152c83db4bcea1968ca11d44839526fdc0cd
Author: mtmn <miro@haravara.org>
Date: Sat, 2 May 2026 23:45:45 +0200
fix(ci): typo in test workflow
Diffstat:
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
@@ -1,11 +1,18 @@
on:
- push
+ push:
+ workflow_call:
+ inputs:
+ ref:
+ type: string
+ required: false
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ with:
+ ref: ${{ inputs.ref }}
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'