File tree 1 file changed +5
-16
lines changed
1 file changed +5
-16
lines changed Original file line number Diff line number Diff line change 37
37
- run : yarn test:unit
38
38
39
39
e2e :
40
- strategy :
41
- fail-fast : false
42
- matrix :
43
- node :
44
- - 18
45
-
46
40
timeout-minutes : 10
47
41
48
42
name : End to End
@@ -51,17 +45,17 @@ jobs:
51
45
steps :
52
46
- uses : actions/checkout@v4
53
47
54
- - name : Install Node ${{matrix.node}}.x
48
+ - name : Install Node
55
49
uses : actions/setup-node@v4
56
50
with :
57
- node-version : ${{matrix.node}}.x
51
+ node-version-file : ' package.json '
58
52
59
53
- name : Cache build:all
60
54
id : cache-build
61
55
uses : actions/cache@v4
62
56
with :
63
57
path : packages/published/**/dist
64
- key : ${{ matrix.node }} -cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
58
+ key : node18 -cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
65
59
66
60
- name : Cache playwright binaries
67
61
id : cache-playwright-binaries
@@ -105,18 +99,13 @@ jobs:
105
99
retention-days : 3
106
100
107
101
lint :
108
- strategy :
109
- matrix :
110
- node :
111
- - 18
112
-
113
102
name : Linting
114
103
runs-on : ubuntu-latest
115
104
116
105
steps :
117
106
- uses : actions/checkout@v4
118
107
119
- - name : Install Node ${{matrix.node}}.x
108
+ - name : Install Node
120
109
uses : actions/setup-node@v4
121
110
with :
122
111
node-version-file : ' package.json'
@@ -126,7 +115,7 @@ jobs:
126
115
uses : actions/cache@v4
127
116
with :
128
117
path : packages/published/**/dist
129
- key : ${{ matrix.node }} -cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
118
+ key : node18 -cache-build-${{ hashFiles('packages/published/**', 'yarn.lock') }}
130
119
131
120
- run : yarn install
132
121
You can’t perform that action at this time.
0 commit comments