16
16
node : [14, 16, 17]
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
- name : Load Node version ${{ matrix.node }}
21
- uses : actions/setup-node@v3
21
+ uses : actions/setup-node@v4
22
22
with :
23
23
node-version : ${{ matrix.node }}
24
24
cache : npm
@@ -27,19 +27,19 @@ jobs:
27
27
- name : Run Jest
28
28
run : npm run test:ci
29
29
- name : Run Coveralls
30
- uses : coverallsapp/github-action@1.1.3
30
+ uses : coverallsapp/github-action@v2
31
31
if : matrix.node == '16'
32
32
with :
33
33
github-token : ${{ secrets.GITHUB_TOKEN }}
34
- path-to-lcov : ./reports/lcov.info
34
+ file : ./reports/lcov.info
35
35
flow :
36
36
name : Flow type checking
37
37
runs-on : ubuntu-latest
38
38
steps :
39
39
- name : Checkout
40
- uses : actions/checkout@v3
40
+ uses : actions/checkout@v4
41
41
- name : Load Node
42
- uses : actions/setup-node@v3
42
+ uses : actions/setup-node@v4
43
43
with :
44
44
cache : npm
45
45
- name : Npm Install
54
54
node : [16]
55
55
steps :
56
56
- name : Checkout
57
- uses : actions/checkout@v3
57
+ uses : actions/checkout@v4
58
58
- name : Load Node version ${{ matrix.node }}
59
- uses : actions/setup-node@v3
59
+ uses : actions/setup-node@v4
60
60
with :
61
61
node-version : ${{ matrix.node }}
62
62
cache : npm
69
69
runs-on : ubuntu-latest
70
70
steps :
71
71
- name : Checkout
72
- uses : actions/checkout@v3
72
+ uses : actions/checkout@v4
73
73
- name : Load Node version
74
- uses : actions/setup-node@v3
74
+ uses : actions/setup-node@v4
75
75
with :
76
76
cache : npm
77
77
- name : Npm Install
0 commit comments