File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 99Follow the installation instructions here:<br />
1010https://nodejs.dev/download
1111
12+ Node.js 16.x is used for development of this project. [ nvm] ( https://github.com/nvm-sh/nvm ) is recommended to easily switch between Node.js versions.
13+
1214### 2. Install dependencies
1315
1416To work on the codebase you have to install all the dependencies:
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check npm
22
33env :
44 # See: https://github.com/actions/setup-node/#readme
5- NODE_VERSION : 10 .x
5+ NODE_VERSION : 16 .x
66
77# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
88on :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check Packaging
22
33env :
44 # See: https://github.com/actions/setup-node/#readme
5- NODE_VERSION : 10 .x
5+ NODE_VERSION : 16 .x
66
77on :
88 push :
Original file line number Diff line number Diff line change 11name : Test Action
22
3+ env :
4+ # See: https://github.com/actions/setup-node/#readme
5+ NODE_VERSION : 16.x
6+
37on :
48 push :
59 pull_request :
@@ -24,10 +28,10 @@ jobs:
2428 - name : Checkout
2529 uses : actions/checkout@v2
2630
27- - name : Set Node.js 10.x
31+ - name : Setup Node.js
2832 uses : actions/setup-node@v2
2933 with :
30- node-version : 10.x
34+ node-version : ${{ env.NODE_VERSION }}
3135
3236 - name : npm install
3337 run : npm install
You can’t perform that action at this time.
0 commit comments