mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-06 10:37:22 +00:00
fix(ci): standardize CI on node 22 (#4302)
# What does this PR do? CI was previously using both node 20 and 22 standardize on node 22 Closes #4294 Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
This commit is contained in:
parent
c57c2ae562
commit
2bdcbe7963
2 changed files with 6 additions and 2 deletions
5
.github/workflows/pre-commit.yml
vendored
5
.github/workflows/pre-commit.yml
vendored
|
|
@ -16,6 +16,9 @@ concurrency:
|
|||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [22]
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
|
@ -41,7 +44,7 @@ jobs:
|
|||
- name: Set up Node.js
|
||||
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
||||
with:
|
||||
node-version: '20'
|
||||
node-version: ${{matrix.node-version}}
|
||||
cache: 'npm'
|
||||
cache-dependency-path: 'src/llama_stack_ui/'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue