Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading