File tree 3 files changed +19
-5
lines changed
3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ jobs:
55
55
run : cd playground && yarn install --unsafe-perm
56
56
- name : Build playground
57
57
run : yarn playground:build
58
- # - name: Run Jest tests
59
- # run: yarn test:jest
60
- - name : Run Cypress tests
58
+ - name : Run unit tests
59
+ run : yarn test:unit
60
+ - name : Run end-to-end tests
61
61
uses : cypress-io/github-action@v6
62
62
with :
63
- start : yarn playground:start
63
+ start : yarn playground:build-and- start
64
64
- uses : actions/upload-artifact@v4
65
65
if : failure()
66
66
with :
Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : npm
4
+ directory : /
5
+ schedule :
6
+ interval : daily
7
+ ignore :
8
+ - dependency-name : ' \*'
9
+ update-types : ["version-update:semver-patch"]
10
+ groups :
11
+ strapi :
12
+ patterns :
13
+ - " @strapi/*"
Original file line number Diff line number Diff line change 37
37
"playground:yalc-add-link" : " cd playground && yalc add --link strapi-plugin-boilerplate" ,
38
38
"playground:build" : " cd playground && yarn build" ,
39
39
"playground:develop" : " cd playground && yarn develop" ,
40
- "playground:start" : " cd playground && yarn start"
40
+ "playground:start" : " cd playground && yarn start" ,
41
+ "playground:build-and-start" : " cd playground && yarn build && yarn start"
41
42
},
42
43
"dependencies" : {
43
44
"@strapi/design-system" : " ^2.0.0-rc.14" ,
You can’t perform that action at this time.
0 commit comments