Skip to content

Commit

Permalink
node version warning
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Jun 28, 2024
1 parent 9d67af2 commit 49b0e9f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies and build 🔧
run: | # Install and link dependencies
npm ci
npx lerna bootstrap
- run: npm ci
- run: npx lerna bootstrap
- name: Version and publish
id: graduateRelease
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor}}@users.noreply.github.com"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Click [here](core/README.md#components) to learn how to use our components.


## Local development
You must have nodejs version 20.

At the root of project in your terminal, run `npm install`

[Lerna](https://lerna.js.org/) is used for managing and publishing packages in this repo.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"semver": "^5.7.2"
},
"engines": {
"node": ">= 15"
"node": ">= 20"
}
}

0 comments on commit 49b0e9f

Please sign in to comment.