File tree Expand file tree Collapse file tree 3 files changed +37
-14
lines changed Expand file tree Collapse file tree 3 files changed +37
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : CI Tests
2
+
3
+ on :
4
+ - pull_request
5
+ - push
6
+
7
+ env :
8
+ CI : true
9
+
10
+ jobs :
11
+ unit :
12
+ runs-on : ubuntu-latest
13
+ strategy :
14
+ matrix :
15
+ node-version :
16
+ - 8.x
17
+ - 10.x
18
+ - 12.x
19
+ - 14.x
20
+ steps :
21
+ - uses : actions/checkout@v1
22
+ - uses : actions/setup-node@v1
23
+ with :
24
+ node-version : ${{ matrix.node-version }}
25
+
26
+ - name : Cache npm
27
+ uses : actions/cache@v1
28
+ with :
29
+ path : ~/.npm
30
+ key : ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
31
+
32
+ - run : npm install
33
+ - run : npm run lint
34
+ - run : npm run format
35
+ - run : npm run test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ - Adds ` 4GB ` as a ` memory ` option for ` runWith() ` .
2
+ - Adds support for choosing ` ingressSettings ` via ` runWith() ` .
You can’t perform that action at this time.
0 commit comments