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
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]

steps:
# Full history is required so the PR base and head commits are both available.
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/install-build-sdk-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,25 @@ on:
- master
- 'release/**'

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies, run build-sdk, and pack
run: npm run ci
- run: npm run build:dev
Expand Down
Loading