Skip to content

Commit f7b6df8

Browse files
committed
debug: not using third party workflow
1 parent 49943ee commit f7b6df8

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/client.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff 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

client/config/test/jest.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ const dirname = currentDirName(import.meta.url);
1313

1414
export 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"),

0 commit comments

Comments
 (0)