From 770263f65febc91fdfa85f0a2ace54c9d17dde53 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Mon, 30 Sep 2024 23:54:42 +0200 Subject: [PATCH] Use node 20 in gh workflows --- .github/workflows/client-ci.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/client-ci.yml b/.github/workflows/client-ci.yml index 9fca512..0d1a051 100644 --- a/.github/workflows/client-ci.yml +++ b/.github/workflows/client-ci.yml @@ -26,7 +26,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 21 + node-version: 20 - run: npm install - name: Run integration tests run: xvfb-run -a npm run test:e2e diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c532dc..e45e81b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,9 +19,9 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 21 + node-version: 20 - - run: npm ci + - run: npm i - name: Package Extension id: packageExtension @@ -98,7 +98,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 21 + node-version: 20 - name: Publish to Visual Studio Marketplace uses: HaaLeo/publish-vscode-extension@v1