Skip to content

Commit 7ced04f

Browse files
committed
chore(cli): require Node 20 and update CI/publish workflows
1 parent 44ed789 commit 7ced04f

File tree

5 files changed

+244
-114
lines changed

5 files changed

+244
-114
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v1
16-
- name: Use Node.js 14.x
16+
- name: Use Node.js 20.x
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: 14.x
19+
node-version: 20.x
2020
- name: install dependencies
2121
working-directory: ${{ matrix.package }}
2222
run: yarn

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Setup .npmrc file to publish to npm
1616
- uses: actions/setup-node@v2
1717
with:
18-
node-version: '16.x'
18+
node-version: '20.x'
1919
registry-url: 'https://registry.npmjs.org'
2020
- run: npm ci
2121
- run: npm publish --access public

0 commit comments

Comments
 (0)