Skip to content

Commit

Permalink
fix: upgrade node version
Browse files Browse the repository at this point in the history
  • Loading branch information
taoqf committed Dec 26, 2024
1 parent b286af8 commit efd77ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 17.x]
node-version: [18.x, 20.x]

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js 14.x to publish to npmjs.org
- name: Setup Node.js 22.x to publish to npmjs.org
uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
node-version: "22.x"
registry-url: "https://registry.npmjs.org"

- name: Install Packages
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit efd77ff

Please sign in to comment.