From b7f7e13a25ed7da159b9c21fb81e57e75b6e994a Mon Sep 17 00:00:00 2001 From: Ayeshas09 Date: Wed, 13 May 2026 15:07:29 +0500 Subject: [PATCH] ci: update node version in github workflows --- .github/workflows/check_build.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_build.yml b/.github/workflows/check_build.yml index 833a1bc8..c3555d2d 100644 --- a/.github/workflows/check_build.yml +++ b/.github/workflows/check_build.yml @@ -6,7 +6,7 @@ name: Run and check build for current commit on: # Triggers the workflow on pull request events but only for the alpha and dev branches pull_request: - branches: [ alpha, dev ] + branches: [ alpha, dev, beta ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '20', '22', '24' ] + node: [ '22', '24' ] name: Node ${{ matrix.node }} sample steps: - name: checkout cli diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3083f105..47c9f833 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '20' ] + node: [ '22' ] name: Release with Node version ${{ matrix.node }} steps: - name: Checkout CLI