feat: make reusable workflows strictly container-native (#10)

Co-authored-by: gandalf-the-greybeard[bot] <gandalf-the-greybeard[bot]@users.noreply.github.com>
This commit is contained in:
hugh-hackman[bot]
2026-03-10 23:44:40 +00:00
committed by GitHub
parent 4361c131f0
commit 0ef78ac580
2 changed files with 15 additions and 13 deletions
+1 -6
View File
@@ -12,18 +12,13 @@ on:
jobs:
ci:
runs-on: local-ubuntu-latest
container: node:${{ inputs.node-version }}
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci