File tree 2 files changed +12
-12
lines changed
2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
steps :
18
18
19
19
- name : ' Checkout the repository'
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
22
- - uses : actions/setup-node@v1
22
+ - uses : actions/setup-node@v4
23
23
with :
24
- node-version : 16 .x
24
+ node-version : 20 .x
25
25
26
26
- name : Install dependencies
27
27
run : yarn install
32
32
run : yarn run karma-headless --browsers ${{ matrix.browsers }}
33
33
34
34
- name : Coveralls Parallel
35
- uses : coverallsapp/github-action@master
35
+ uses : coverallsapp/github-action@v2
36
36
with :
37
37
github-token : ${{ secrets.github_token }}
38
38
flag-name : run-${{ matrix.test_number }}
43
43
runs-on : ubuntu-latest
44
44
steps :
45
45
- name : Coveralls Finished
46
- uses : coverallsapp/github-action@master
46
+ uses : coverallsapp/github-action@v2
47
47
with :
48
48
github-token : ${{ secrets.github_token }}
49
49
parallel-finished : true
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ jobs:
10
10
11
11
steps :
12
12
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
15
15
- uses : actions/setup-node@v1
16
16
with :
17
- node-version : 16 .x
17
+ node-version : 20 .x
18
18
19
- - name : Install production dependencies, check node engine compatiblity
19
+ - name : Install production dependencies, check node engine compatibility
20
20
run : yarn install --production=true
21
21
22
22
- name : Install development dependencies
29
29
run : yarn run build
30
30
31
31
- name : Upload build
32
- uses : actions/upload-artifact@v2
32
+ uses : actions/upload-artifact@v4
33
33
with :
34
34
name : build
35
35
path : |
@@ -52,18 +52,18 @@ jobs:
52
52
steps :
53
53
54
54
- name : ' Checkout the repository'
55
- uses : actions/checkout@v2
55
+ uses : actions/checkout@v4
56
56
57
57
- name : Test with Node.js ${{ matrix.node-version }}
58
- uses : actions/setup-node@v1
58
+ uses : actions/setup-node@v4
59
59
with :
60
60
node-version : ${{ matrix.node-version }}
61
61
62
62
- name : Install dependencies
63
63
run : yarn install --ignore-engines
64
64
65
65
- name : Download build
66
- uses : actions/download-artifact@v2
66
+ uses : actions/download-artifact@v4
67
67
with :
68
68
name : build
69
69
You can’t perform that action at this time.
0 commit comments