@@ -13,12 +13,13 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
# See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases
16
- node-version : [18.x, 20.x]
16
+ # FIXME: Tests are failing on Node.js v20.12.1 (https://github.com/replicate/replicate-javascript/issues/237)
17
+ node-version : [18.x, 20.11.1]
17
18
18
19
steps :
19
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
20
21
- name : Use Node.js ${{ matrix.node-version }}
21
- uses : actions/setup-node@v3
22
+ uses : actions/setup-node@v4
22
23
with :
23
24
node-version : ${{ matrix.node-version }}
24
25
cache : " npm"
36
37
tarball-name : ${{ steps.pack.outputs.tarball-name }}
37
38
38
39
steps :
39
- - uses : actions/checkout@v3
40
+ - uses : actions/checkout@v4
40
41
- name : Use Node.js
41
- uses : actions/setup-node@v3
42
+ uses : actions/setup-node@v4
42
43
with :
43
44
node-version : 20.x
44
45
cache : " npm"
@@ -67,12 +68,12 @@ jobs:
67
68
fail-fast : false
68
69
69
70
steps :
70
- - uses : actions/checkout@v3
71
+ - uses : actions/checkout@v4
71
72
- uses : actions/download-artifact@v3
72
73
with :
73
74
name : package-tarball
74
75
- name : Use Node.js ${{ matrix.node-version }}
75
- uses : actions/setup-node@v3
76
+ uses : actions/setup-node@v4
76
77
with :
77
78
node-version : ${{ matrix.node-version }}
78
79
cache : " npm"
@@ -90,17 +91,18 @@ jobs:
90
91
91
92
strategy :
92
93
matrix :
94
+ node-version : [20.x]
93
95
browser : ["chromium", "firefox", "webkit"]
94
96
suite : ["browser"]
95
97
fail-fast : false
96
98
97
99
steps :
98
- - uses : actions/checkout@v3
100
+ - uses : actions/checkout@v4
99
101
- uses : actions/download-artifact@v3
100
102
with :
101
103
name : package-tarball
102
104
- name : Use Node.js ${{ matrix.node-version }}
103
- uses : actions/setup-node@v3
105
+ uses : actions/setup-node@v4
104
106
with :
105
107
node-version : ${{ matrix.node-version }}
106
108
cache : " npm"
@@ -125,12 +127,12 @@ jobs:
125
127
suite : [cloudflare-worker]
126
128
127
129
steps :
128
- - uses : actions/checkout@v3
130
+ - uses : actions/checkout@v4
129
131
- uses : actions/download-artifact@v3
130
132
with :
131
133
name : package-tarball
132
134
- name : Use Node.js ${{ matrix.node-version }}
133
- uses : actions/setup-node@v3
135
+ uses : actions/setup-node@v4
134
136
with :
135
137
node-version : ${{ matrix.node-version }}
136
138
cache : " npm"
@@ -154,7 +156,7 @@ jobs:
154
156
suite : [bun]
155
157
156
158
steps :
157
- - uses : actions/checkout@v3
159
+ - uses : actions/checkout@v4
158
160
- uses : actions/download-artifact@v3
159
161
with :
160
162
name : package-tarball
0 commit comments