Skip to content

Commit

Permalink
Merge pull request #72 from multiversx/rm/update-deploy-scripts-node-…
Browse files Browse the repository at this point in the history
…version

Updated node version to 18 on deploy scripts
  • Loading branch information
radumojic committed Nov 22, 2023
2 parents bec39d8 + 5b324a3 commit 40e0eaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Setup yarn
run: npm install -g yarn
- run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Setup yarn
run: npm install -g yarn
- run: yarn install
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Follow the next step to start using this dApp.

For _development_ you will need to have the following:

- node version >=16.20.0
- node version >=18.18.2
- npm

### Installation and running
Expand All @@ -74,9 +74,11 @@ From a terminal, navigate to the project folder and run `npm install` or `yarn i
To run the project locally run `npm run start` or `yarn start` from the project folder. Open http://localhost:3001 to view it in the browser.

### Step 3. Build for testing and production use

To build the project run `npm run build` or `yarn build` from the project folder.

### Step 4. Preview the build locally

To serve the build run `npm run preview` or `yarn preview` from the project folder.

<!-- ROADMAP -->
Expand All @@ -98,5 +100,3 @@ One can contribute by creating _pull requests_, or by opening _issues_ for disco
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request


0 comments on commit 40e0eaa

Please sign in to comment.