File tree 2 files changed +48
-7
lines changed
2 files changed +48
-7
lines changed Original file line number Diff line number Diff line change 11
11
node-version : [18, 20]
12
12
steps :
13
13
- uses : actions/checkout@v4
14
- - uses : actions/cache@v4
14
+
15
+ - name : Get npm cache directory
16
+ id : npm-cache-dir
17
+ shell : bash
18
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
19
+
20
+ - name : Setup cache
21
+ uses : actions/cache@v4
15
22
id : npm-cache
16
23
with :
17
24
path : ${{ steps.npm-cache-dir.outputs.dir }}
32
39
node-version : [18, 20]
33
40
steps :
34
41
- uses : actions/checkout@v4
35
- - uses : actions/cache@v4
42
+
43
+ - name : Get npm cache directory
44
+ id : npm-cache-dir
45
+ shell : bash
46
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
47
+
48
+ - name : Setup cache
49
+ uses : actions/cache@v4
36
50
id : npm-cache
37
51
with :
38
52
path : ${{ steps.npm-cache-dir.outputs.dir }}
59
73
test-set : [stdout, cucumber]
60
74
steps :
61
75
- uses : actions/checkout@v4
62
- - uses : actions/cache@v4
76
+
77
+ - name : Get npm cache directory
78
+ id : npm-cache-dir
79
+ shell : bash
80
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
81
+
82
+ - name : Setup cache
83
+ uses : actions/cache@v4
63
84
id : npm-cache
64
85
with :
65
86
path : ${{ steps.npm-cache-dir.outputs.dir }}
Original file line number Diff line number Diff line change 15
15
node-version : [18, 20]
16
16
steps :
17
17
- uses : actions/checkout@v4
18
- - uses : actions/cache@v4
18
+
19
+ - name : Get npm cache directory
20
+ id : npm-cache-dir
21
+ shell : bash
22
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
23
+
24
+ - name : Setup cache
25
+ uses : actions/cache@v4
19
26
id : npm-cache
20
27
with :
21
28
path : ${{ steps.npm-cache-dir.outputs.dir }}
36
43
node-version : [18, 20]
37
44
steps :
38
45
- uses : actions/checkout@v4
39
- - uses : actions/cache@v4
46
+
47
+ - name : Get npm cache directory
48
+ id : npm-cache-dir
49
+ shell : bash
50
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
51
+
52
+ - name : Setup cache
53
+ uses : actions/cache@v4
40
54
id : npm-cache
41
55
with :
42
56
path : ${{ steps.npm-cache-dir.outputs.dir }}
63
77
test-set : [stdout, cucumber]
64
78
steps :
65
79
- uses : actions/checkout@v4
66
- - uses : actions/cache@v4
80
+
81
+ - name : Get npm cache directory
82
+ id : npm-cache-dir
83
+ shell : bash
84
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
85
+
86
+ - name : Setup cache
87
+ uses : actions/cache@v4
67
88
id : npm-cache
68
89
with :
69
90
path : ${{ steps.npm-cache-dir.outputs.dir }}
86
107
- uses : ./.github/actions/functional-test
87
108
with :
88
109
test-set : ${{ matrix.test-set }}
89
-
90
110
release :
91
111
name : Release process
92
112
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments