Skip to content

Commit

Permalink
Added support node.js v18.20.0 (#456)
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitriy Borzenko <[email protected]>
  • Loading branch information
dmitriy-borzenko and Dmitriy Borzenko authored Oct 25, 2024
1 parent c61e87e commit a713fbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- uses: actions/cache@v3 # Source: https://gist.github.com/rupeshtiwari/44ebec690f2c01bf1df9b1d215a0e723
id: cache-nodemodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- uses: actions/cache@v3 # Source: https://gist.github.com/rupeshtiwari/44ebec690f2c01bf1df9b1d215a0e723
id: cache-nodemodules
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Added
- Added support node.js v18.20.0
### Fixed
- Bug with line breaks for the schema content

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ See [deployment manual](https://docs.kamu.dev/node/deploy/) on how to deploy the
### Technologies

- TypeScript, version: 5.1.6;
- [Node.js](https://nodejs.org/en/download/releases/), version: 16.20.2;
- [Node.js](https://nodejs.org/en/download/releases/), version: 18.20.0;
- [Angular CLI](https://github.com/angular/angular-cli), version 16.2.14.

### Libraries
Expand All @@ -60,15 +60,15 @@ See [deployment manual](https://docs.kamu.dev/node/deploy/) on how to deploy the

0. Do it once:

- download and install [Node.js](https://nodejs.org/en/download/releases/), version: 16.20.2
- download and install [Node.js](https://nodejs.org/en/download/releases/), version: 18.20.0

or

- install Node.js with [Node.js Version Manager](https://github.com/nvm-sh/nvm).

Using `nvm` (Node.js Version Manager) makes it easier to install and manage multiple versions of Node.js on a single local environment.

To install a specific version of node: `nvm install 16.20.2`
To install a specific version of node: `nvm install 18.20.0`

1. Install packages that project depends on: `npm install` and `npm run install_pretty_quick`
2. Run application locally: `ng serve` or `npm run start`
Expand Down

0 comments on commit a713fbb

Please sign in to comment.