File tree 4 files changed +10
-4
lines changed 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 9
9
Follow the installation instructions here:<br />
10
10
https://nodejs.dev/download
11
11
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
+
12
14
### 2. Install dependencies
13
15
14
16
To 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
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-node/#readme
5
- NODE_VERSION : 10 .x
5
+ NODE_VERSION : 16 .x
6
6
7
7
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
8
8
on :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check Packaging
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-node/#readme
5
- NODE_VERSION : 10 .x
5
+ NODE_VERSION : 16 .x
6
6
7
7
on :
8
8
push :
Original file line number Diff line number Diff line change 1
1
name : Test Action
2
2
3
+ env :
4
+ # See: https://github.com/actions/setup-node/#readme
5
+ NODE_VERSION : 16.x
6
+
3
7
on :
4
8
push :
5
9
pull_request :
@@ -24,10 +28,10 @@ jobs:
24
28
- name : Checkout
25
29
uses : actions/checkout@v2
26
30
27
- - name : Set Node.js 10.x
31
+ - name : Setup Node.js
28
32
uses : actions/setup-node@v2
29
33
with :
30
- node-version : 10.x
34
+ node-version : ${{ env.NODE_VERSION }}
31
35
32
36
- name : npm install
33
37
run : npm install
You can’t perform that action at this time.
0 commit comments