File tree Expand file tree Collapse file tree 6 files changed +1031
-19438
lines changed Expand file tree Collapse file tree 6 files changed +1031
-19438
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
tests :
11
11
runs-on : ubuntu-latest
12
- strategy :
13
- matrix :
14
- node : [16]
15
12
steps :
16
13
- name : Checkout
17
14
uses : actions/checkout@v3
18
15
with :
19
16
fetch-depth : 0
17
+ - name : Setup Nodejs Env
18
+ run : echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
20
19
- name : Setup Nodejs
21
20
uses : actions/setup-node@v3
22
21
with :
23
- node-version : ${{ matrix.node }}
22
+ node-version : ${{ env.NODE_VER }}
24
23
- name : Install dependencies
25
24
run : npm ci
26
25
- name : Validate package-lock.json changes
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
version-check :
13
- uses : openedx/.github/.github/workflows/lockfileversion-check.yml@master
13
+ uses : openedx/.github/.github/workflows/lockfileversion-check-v3 .yml@master
Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ jobs:
12
12
uses : actions/checkout@v3
13
13
with :
14
14
fetch-depth : 0
15
+ - name : Setup Nodejs Env
16
+ run : echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
15
17
- name : Setup Node.js
16
18
uses : actions/setup-node@v3
17
19
with :
18
- node-version : 16
20
+ node-version : ${{ env.NODE_VER }}
19
21
- name : Install dependencies
20
22
run : npm ci
21
23
- name : Validate package-lock.json changes
Original file line number Diff line number Diff line change
1
+ 18
You can’t perform that action at this time.
0 commit comments