File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed
Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,15 @@ jobs:
2525 node-version : ${{ matrix.node-version }}
2626 cache : ' yarn'
2727 cache-dependency-path : ' client/yarn.lock'
28- - name : Install dependencies
29- uses : borales/actions-yarn@v4
30- with :
31- cmd : install
32- dir : client
33- - name : Run tests
34- uses : borales/actions-yarn@v4
35- with :
36- cmd : test
37- dir : client
28+ - run : |
29+ cd client && yarn install && yarn test
30+ # - name: Install dependencies
31+ # uses: borales/actions-yarn@v4
32+ # with:
33+ # cmd: install
34+ # dir: client
35+ # - name: Run tests
36+ # uses: borales/actions-yarn@v4
37+ # with:
38+ # cmd: test
39+ # dir: client
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ const dirname = currentDirName(import.meta.url);
1313
1414export default {
1515 testEnvironment : "jsdom" ,
16- testEnvironmentOptions : {
17- url : 'http://localhost'
18- } ,
1916 moduleNameMapper : {
2017 "react-markdown" : path . resolve ( dirname , "./mocks/react-markdown.js" ) ,
2118 "\\.md\\?url$" : path . resolve ( dirname , "./mocks/markdown-url-module.js" ) ,
You can’t perform that action at this time.
0 commit comments