Skip to content

Commit 45f09db

Browse files
authored
Merge branch 'main' into developer
2 parents 39457d5 + f7b6df8 commit 45f09db

File tree

4 files changed

+24
-14
lines changed

4 files changed

+24
-14
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

.github/workflows/commitlint.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Lint Commit Messages
2+
on: [pull_request]
3+
4+
jobs:
5+
commitlint:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
with:
10+
fetch-depth: 0
11+
- uses: wagoid/commitlint-github-action@v5

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
pull_request:
6+
pull_request_target:
77
types: [opened, synchronize, reopened]
88

99
permissions:

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)