Skip to content

Commit

Permalink
feat: update the min nodejs version to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
petermuessig committed Nov 29, 2023
1 parent 9f614d2 commit c889e52
Show file tree
Hide file tree
Showing 5 changed files with 3,700 additions and 3,434 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ on:
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ matrix.version }}
registry-url: https://registry.npmjs.org/

- run: git config --global user.email "[email protected]" && git config --global user.name "Your Name"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
registry-url: https://registry.npmjs.org/

- run: npm install
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The purpose of the `project` subgenerator is to guide you on your first steps wi
## Requirements

- Get [Node.js](https://nodejs.org/en/download/) (:warning: **version 14 or higher**)
- Get [Node.js](https://nodejs.org/en/download/) (:warning: **version 16 or higher**)

## Download and Installation

Expand Down
Loading

0 comments on commit c889e52

Please sign in to comment.