Commit ce18831 1 parent 9b8917e commit ce18831 Copy full SHA for ce18831
File tree 1 file changed +18
-8
lines changed
1 file changed +18
-8
lines changed Original file line number Diff line number Diff line change 8
8
test-unit-jest :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
+ - name : Setup Node.js
12
+ uses : actions/setup-node@v4
13
+ with :
14
+ node-version : ' lts/*'
15
+
16
+ - run : corepack enable
17
+
11
18
- name : Checkout repository
12
19
uses : actions/checkout@v4
13
20
14
- - name : Setup Node.js
21
+ - name : Set up Node.js
15
22
uses : actions/setup-node@v4
16
23
with :
17
24
node-version-file : ' .nvmrc'
18
- cache : ' yarn'
19
-
20
- - run : corepack enable
25
+ cache : yarn
21
26
22
27
- name : Install dependencies
23
28
run : yarn --immutable
@@ -28,16 +33,21 @@ jobs:
28
33
test-unit-jest-development :
29
34
runs-on : ubuntu-latest
30
35
steps :
36
+ - name : Setup Node.js
37
+ uses : actions/setup-node@v4
38
+ with :
39
+ node-version : ' lts/*'
40
+
41
+ - run : corepack enable
42
+
31
43
- name : Checkout repository
32
44
uses : actions/checkout@v4
33
45
34
- - name : Setup Node.js
46
+ - name : Set up Node.js
35
47
uses : actions/setup-node@v4
36
48
with :
37
49
node-version-file : ' .nvmrc'
38
- cache : ' yarn'
39
-
40
- - run : corepack enable
50
+ cache : yarn
41
51
42
52
- name : Install dependencies
43
53
run : yarn --immutable
You can’t perform that action at this time.
0 commit comments