Compare commits

...

9 commits

Author SHA1 Message Date
Krishan
70d3278a66 Update readme 2022-11-08 20:18:20 +05:30
Krishan
e44d0183dc
Update Dockerfile 2022-11-08 15:25:54 +05:30
Krishan
796a5c52b6 Update Dockerfile 2022-11-07 15:33:40 +05:30
Krishan
2e0e8ca76f Update Nodejs LTS to v18.12.1 2022-11-07 15:32:34 +05:30
Krishan
e6a7fb3c9f use lts syntax 2022-11-05 21:02:17 +05:30
Krishan
7e8df121e4
Use node v18.12.0 2022-11-01 20:24:34 +05:30
Krishan
39814d4ea2
Use node v18.12.0 2022-11-01 20:24:00 +05:30
Krishan
48144be445
Use node v18.12.0 2022-11-01 20:23:11 +05:30
Krishan
cfa9094fb6
Use node hydrogen lts in dockerfile 2022-11-01 20:20:26 +05:30
5 changed files with 6 additions and 6 deletions

View file

@ -16,7 +16,7 @@ jobs:
- name: Setup node - name: Setup node
uses: actions/setup-node@v3.5.1 uses: actions/setup-node@v3.5.1
with: with:
node-version: 17.9.0 node-version: 18.12.1
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
@ -35,4 +35,4 @@ jobs:
with: with:
name: pr name: pr
path: ./pr.txt path: ./pr.txt
retention-days: 1 retention-days: 1

View file

@ -15,7 +15,7 @@ jobs:
- name: Setup node - name: Setup node
uses: actions/setup-node@v3.5.1 uses: actions/setup-node@v3.5.1
with: with:
node-version: 17.9.0 node-version: 18.12.1
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci

View file

@ -14,7 +14,7 @@ jobs:
- name: Setup node - name: Setup node
uses: actions/setup-node@v3.5.1 uses: actions/setup-node@v3.5.1
with: with:
node-version: 17.9.0 node-version: 18.12.1
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci

View file

@ -1,5 +1,5 @@
## Builder ## Builder
FROM node:17.9.0-alpine3.15 as builder FROM node:18.12.0-alpine3.15 as builder
WORKDIR /src WORKDIR /src

View file

@ -84,7 +84,7 @@ UeGsouhyuITLwEhScounZDqop+Dx
## Local development ## Local development
> We recommend using a version manager as versions change very quickly. You will likely need to switch > We recommend using a version manager as versions change very quickly. You will likely need to switch
between multiple Node.js versions based on the needs of different projects you're working on. [NVM on windows](https://github.com/coreybutler/nvm-windows#installation--upgrades) on Windows and [nvm](https://github.com/nvm-sh/nvm) on Linux/macOS are pretty good choices. Also recommended nodejs version is 16.15.0 LTS. between multiple Node.js versions based on the needs of different projects you're working on. [NVM on windows](https://github.com/coreybutler/nvm-windows#installation--upgrades) on Windows and [nvm](https://github.com/nvm-sh/nvm) on Linux/macOS are pretty good choices. Also recommended nodejs version Hydrogen LTS (v18).
Execute the following commands to start a development server: Execute the following commands to start a development server:
```sh ```sh