File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 5
5
jobs :
6
6
on_pr :
7
7
runs-on : ubuntu-latest
8
+ env :
9
+ NODE_ENV : dev
8
10
steps :
9
11
- uses : actions/checkout@v2
12
+ - name : Set up Node
13
+ uses : actions/setup-node@v2
14
+ with :
15
+ node-version : ' 14'
10
16
- name : Install packages
11
17
run : |
12
- export NODE_ENV=dev
13
18
npm ci
14
19
npm run lerna-ci
15
20
- name : Run lint
Original file line number Diff line number Diff line change 6
6
on_push :
7
7
runs-on : ubuntu-latest
8
8
if : ${{ github.event_name != 'pull_request' }}
9
+ env :
10
+ NODE_ENV : dev
9
11
steps :
10
12
- uses : actions/checkout@v2
13
+ - name : Set up Node
14
+ uses : actions/setup-node@v2
15
+ with :
16
+ node-version : ' 14'
11
17
- name : Install packages
12
18
run : |
13
- export NODE_ENV=dev
14
19
npm ci
15
20
npm run lerna-ci
16
21
- name : Run lint
You can’t perform that action at this time.
0 commit comments