8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : google/wireit@setup-github-actions-caching/v1
11
- - uses : actions/checkout@v4
11
+ - uses : actions/checkout@v2
12
12
13
13
- name : Sanity check
14
14
run : node ./scripts/lock-scan.js
15
15
16
- - name : Setup Node 18 .x
17
- uses : actions/setup-node@v4
16
+ - name : Setup Node 16 .x
17
+ uses : actions/setup-node@v1
18
18
with :
19
- node-version : 18 .x
19
+ node-version : 16 .x
20
20
21
21
- name : Install Dependencies
22
- run : npm ci
22
+ run : npm install -- ci
23
23
24
24
- name : Lint
25
25
run : npm run lint
@@ -32,15 +32,15 @@ jobs:
32
32
runs-on : ubuntu-latest
33
33
steps :
34
34
- uses : google/wireit@setup-github-actions-caching/v1
35
- - uses : actions/checkout@v4
35
+ - uses : actions/checkout@v2
36
36
37
- - name : Setup Node 18 .x
38
- uses : actions/setup-node@v4
37
+ - name : Setup Node 16 .x
38
+ uses : actions/setup-node@v1
39
39
with :
40
- node-version : 18 .x
40
+ node-version : 16 .x
41
41
42
42
- name : Install Dependencies
43
- run : npm ci
43
+ run : npm install -- ci
44
44
45
45
- uses : microsoft/playwright-github-action@v1
46
46
@@ -52,19 +52,19 @@ jobs:
52
52
runs-on : ${{ matrix.os }}
53
53
strategy :
54
54
matrix :
55
- node-version : [18 .x]
55
+ node-version : [16 .x]
56
56
os : [ubuntu-latest]
57
57
steps :
58
58
- uses : google/wireit@setup-github-actions-caching/v1
59
- - uses : actions/checkout@v4
59
+ - uses : actions/checkout@v2
60
60
61
61
- name : Setup Node ${{ matrix.node-version }}
62
- uses : actions/setup-node@v4
62
+ uses : actions/setup-node@v1
63
63
with :
64
64
node-version : ${{ matrix.node-version }}
65
65
66
66
- name : Install Dependencies
67
- run : npm ci
67
+ run : npm install -- ci
68
68
69
69
- name : Test
70
70
run : npm run test:node
@@ -75,19 +75,19 @@ jobs:
75
75
runs-on : ${{ matrix.os }}
76
76
strategy :
77
77
matrix :
78
- node-version : [18 .x]
78
+ node-version : [16 .x]
79
79
os : [windows-latest]
80
80
steps :
81
81
- uses : google/wireit@setup-github-actions-caching/v1
82
- - uses : actions/checkout@v4
82
+ - uses : actions/checkout@v2
83
83
84
84
- name : Setup Node ${{ matrix.node-version }}
85
- uses : actions/setup-node@v4
85
+ uses : actions/setup-node@v1
86
86
with :
87
87
node-version : ${{ matrix.node-version }}
88
88
89
89
- name : Install Dependencies
90
- run : npm ci
90
+ run : npm install -- ci
91
91
92
92
- name : Test
93
93
run : npm run test:node
0 commit comments