fix: Updated workflows to checkout on commit of commit-version-bump (#7217)

Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
Brian Choromanski
2026-03-18 18:44:39 -04:00
committed by GitHub
parent 26924ab054
commit 78ff4bb875
5 changed files with 29 additions and 0 deletions

View File

@@ -2,6 +2,10 @@ name: Frontend Lint and Test
on:
workflow_call:
inputs:
ref:
required: false
type: string
jobs:
lint:
@@ -10,6 +14,8 @@ jobs:
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.sha }}
- name: Setup node env 🏗
uses: actions/setup-node@v4.0.0