From b347ed6327ea85ca0a137c84a64aafed6203d1fe Mon Sep 17 00:00:00 2001 From: a8trejo Date: Wed, 27 Nov 2024 19:21:46 -0800 Subject: [PATCH] Reusing composite action --- .github/workflows/code-qa.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-qa.yml b/.github/workflows/code-qa.yml index 5a88244a25..17a76dfeb8 100644 --- a/.github/workflows/code-qa.yml +++ b/.github/workflows/code-qa.yml @@ -14,11 +14,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v4 + - name: cached install + uses: RooVetGit/Roo-GHA/.github/actions/setup-node-cache-and-install@main with: - node-version: '18' - cache: 'npm' + node-version: "18" + clean-install: false - name: Install dependencies run: npm run install:all