From 6ec54f195a2f6df84a940b0862d0a51ee6703d69 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Fri, 11 Apr 2025 18:28:28 +0000 Subject: [PATCH] PR-247699: using node LTS on CI/CD --- .github/workflows/main-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml index 82bcdae..5d9270e 100644 --- a/.github/workflows/main-workflow.yml +++ b/.github/workflows/main-workflow.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js latest + - name: Use Node.js lts uses: actions/setup-node@v3 with: - node-version: latest + node-version: lts cache: 'npm' registry-url: https://registry.npmjs.org/ - run: npm ci @@ -69,7 +69,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: latest + node-version: lts registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm run build