Skip to content

Commit 300662b

Browse files
authored
Merge pull request #58 from mayank-patel/fix-ci
Update the CI setup
2 parents cd7a35c + 00d4edb commit 300662b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '20'
16+
node-version: '24'
1717
cache: 'npm'
1818
- run: npm ci
1919
- run: npm run lint

.github/workflows/deploy-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '20'
16+
node-version: '24'
1717
cache: 'npm'
1818
cache-dependency-path: demo/package-lock.json
1919
- name: Install demo dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
workflow_run:
55
workflows: [CI]
6-
branches: [master]
6+
branches: [main]
77
types: [completed]
88

99
jobs:
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: '20'
25+
node-version: '24'
2626
cache: 'npm'
2727
- run: npm ci
2828
- run: npm run build

0 commit comments

Comments
 (0)