Skip to content

Commit 3ca502b

Browse files
Bhupesh-MShai-ko
authored andcommitted
fixed styles check
1 parent fa17a0b commit 3ca502b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1780
-696
lines changed

.github/workflows/on-push.yml

+108-109
Original file line numberDiff line numberDiff line change
@@ -49,120 +49,119 @@ jobs:
4949
name: lib-schema
5050
path: packages/lib/**/schema/
5151
backend-test:
52-
runs-on: ubuntu-latest
53-
needs: build
54-
defaults:
55-
run:
56-
working-directory: 'packages/lib'
57-
steps:
58-
59-
- uses: actions/checkout@v1
60-
- id: workspace-test
61-
uses: ./test-action
62-
with:
63-
workspace-name: 'dm3-backend'
64-
package-pat: ${{ secrets.PACKAGE_PAT }}
52+
runs-on: ubuntu-latest
53+
needs: build
54+
defaults:
55+
run:
56+
working-directory: 'packages/lib'
57+
steps:
58+
- uses: actions/checkout@v1
59+
- id: workspace-test
60+
uses: ./test-action
61+
with:
62+
workspace-name: 'dm3-backend'
63+
package-pat: ${{ secrets.PACKAGE_PAT }}
6564
integration-test:
66-
runs-on: ubuntu-latest
67-
needs: build
68-
defaults:
69-
run:
70-
working-directory: 'packages/lib'
71-
steps:
72-
- uses: actions/checkout@v1
73-
- id: workspace-test
74-
uses: ./test-action
75-
with:
76-
workspace-name: 'dm3-integration-tests'
77-
package-pat: ${{ secrets.PACKAGE_PAT }}
65+
runs-on: ubuntu-latest
66+
needs: build
67+
defaults:
68+
run:
69+
working-directory: 'packages/lib'
70+
steps:
71+
- uses: actions/checkout@v1
72+
- id: workspace-test
73+
uses: ./test-action
74+
with:
75+
workspace-name: 'dm3-integration-tests'
76+
package-pat: ${{ secrets.PACKAGE_PAT }}
7877
lib-crypto-test:
79-
runs-on: ubuntu-latest
80-
needs: build
81-
defaults:
82-
run:
83-
working-directory: 'packages/lib'
84-
steps:
85-
- uses: actions/checkout@v1
86-
- id: workspace-test
87-
uses: ./test-action
88-
with:
89-
workspace-name: 'dm3-lib-crypto'
90-
package-pat: ${{ secrets.PACKAGE_PAT }}
78+
runs-on: ubuntu-latest
79+
needs: build
80+
defaults:
81+
run:
82+
working-directory: 'packages/lib'
83+
steps:
84+
- uses: actions/checkout@v1
85+
- id: workspace-test
86+
uses: ./test-action
87+
with:
88+
workspace-name: 'dm3-lib-crypto'
89+
package-pat: ${{ secrets.PACKAGE_PAT }}
9190
lib-delivery-test:
92-
runs-on: ubuntu-latest
93-
needs: build
94-
defaults:
95-
run:
96-
working-directory: 'packages/lib'
97-
steps:
98-
- uses: actions/checkout@v1
99-
- id: workspace-test
100-
uses: ./test-action
101-
with:
102-
workspace-name: 'dm3-lib-delivery'
103-
package-pat: ${{ secrets.PACKAGE_PAT }}
91+
runs-on: ubuntu-latest
92+
needs: build
93+
defaults:
94+
run:
95+
working-directory: 'packages/lib'
96+
steps:
97+
- uses: actions/checkout@v1
98+
- id: workspace-test
99+
uses: ./test-action
100+
with:
101+
workspace-name: 'dm3-lib-delivery'
102+
package-pat: ${{ secrets.PACKAGE_PAT }}
104103
lib-messaging-test:
105-
runs-on: ubuntu-latest
106-
needs: build
107-
defaults:
108-
run:
109-
working-directory: 'packages/lib'
110-
steps:
111-
- uses: actions/checkout@v1
112-
- id: workspace-test
113-
uses: ./test-action
114-
with:
115-
workspace-name: 'dm3-lib-messaging'
116-
package-pat: ${{ secrets.PACKAGE_PAT }}
104+
runs-on: ubuntu-latest
105+
needs: build
106+
defaults:
107+
run:
108+
working-directory: 'packages/lib'
109+
steps:
110+
- uses: actions/checkout@v1
111+
- id: workspace-test
112+
uses: ./test-action
113+
with:
114+
workspace-name: 'dm3-lib-messaging'
115+
package-pat: ${{ secrets.PACKAGE_PAT }}
117116
lib-profile-test:
118-
runs-on: ubuntu-latest
119-
needs: build
120-
defaults:
121-
run:
122-
working-directory: 'packages/lib'
123-
steps:
124-
- uses: actions/checkout@v1
125-
- id: workspace-test
126-
uses: ./test-action
127-
with:
128-
workspace-name: 'dm3-lib-profile'
129-
package-pat: ${{ secrets.PACKAGE_PAT }}
117+
runs-on: ubuntu-latest
118+
needs: build
119+
defaults:
120+
run:
121+
working-directory: 'packages/lib'
122+
steps:
123+
- uses: actions/checkout@v1
124+
- id: workspace-test
125+
uses: ./test-action
126+
with:
127+
workspace-name: 'dm3-lib-profile'
128+
package-pat: ${{ secrets.PACKAGE_PAT }}
130129
lib-shared-test:
131-
runs-on: ubuntu-latest
132-
needs: build
133-
defaults:
134-
run:
135-
working-directory: 'packages/lib'
136-
steps:
137-
- uses: actions/checkout@v1
138-
- id: workspace-test
139-
uses: ./test-action
140-
with:
141-
workspace-name: 'dm3-lib-shared'
142-
package-pat: ${{ secrets.PACKAGE_PAT }}
130+
runs-on: ubuntu-latest
131+
needs: build
132+
defaults:
133+
run:
134+
working-directory: 'packages/lib'
135+
steps:
136+
- uses: actions/checkout@v1
137+
- id: workspace-test
138+
uses: ./test-action
139+
with:
140+
workspace-name: 'dm3-lib-shared'
141+
package-pat: ${{ secrets.PACKAGE_PAT }}
143142
lib-storage-test:
144-
runs-on: ubuntu-latest
145-
needs: build
146-
defaults:
147-
run:
148-
working-directory: 'packages/lib'
149-
steps:
150-
- uses: actions/checkout@v1
151-
- id: workspace-test
152-
uses: ./test-action
153-
with:
154-
workspace-name: 'dm3-lib-storage'
155-
package-pat: ${{ secrets.PACKAGE_PAT }}
143+
runs-on: ubuntu-latest
144+
needs: build
145+
defaults:
146+
run:
147+
working-directory: 'packages/lib'
148+
steps:
149+
- uses: actions/checkout@v1
150+
- id: workspace-test
151+
uses: ./test-action
152+
with:
153+
workspace-name: 'dm3-lib-storage'
154+
package-pat: ${{ secrets.PACKAGE_PAT }}
156155
offchain-resolver-test:
157-
runs-on: ubuntu-latest
158-
needs: build
159-
defaults:
160-
run:
161-
working-directory: 'packages/lib'
162-
steps:
163-
- uses: actions/checkout@v1
164-
- id: workspace-test
165-
uses: ./test-action
166-
with:
167-
workspace-name: 'dm3-offchain-resolver'
168-
package-pat: ${{ secrets.PACKAGE_PAT }}
156+
runs-on: ubuntu-latest
157+
needs: build
158+
defaults:
159+
run:
160+
working-directory: 'packages/lib'
161+
steps:
162+
- uses: actions/checkout@v1
163+
- id: workspace-test
164+
uses: ./test-action
165+
with:
166+
workspace-name: 'dm3-offchain-resolver'
167+
package-pat: ${{ secrets.PACKAGE_PAT }}

.yarn/versions/3dae3775.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
undecided:
2-
- dm3-backend
3-
- dm3-billboard-client
4-
- dm3-billboard-widget
5-
- dm3-integration-tests
6-
- dm3-lib-billboard-client-api
7-
- dm3-lib-crypto
8-
- dm3-lib-delivery
9-
- dm3-lib-delivery-api
10-
- dm3-lib-messaging
11-
- dm3-lib-offchain-resolver-api
12-
- dm3-lib-profile
13-
- dm3-lib-shared
14-
- dm3-lib-storage
15-
- dm3-offchain-resolver
16-
- dm3-react
2+
- dm3-backend
3+
- dm3-billboard-client
4+
- dm3-billboard-widget
5+
- dm3-integration-tests
6+
- dm3-lib-billboard-client-api
7+
- dm3-lib-crypto
8+
- dm3-lib-delivery
9+
- dm3-lib-delivery-api
10+
- dm3-lib-messaging
11+
- dm3-lib-offchain-resolver-api
12+
- dm3-lib-profile
13+
- dm3-lib-shared
14+
- dm3-lib-storage
15+
- dm3-offchain-resolver
16+
- dm3-react

.yarnrc.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
nodeLinker: node-modules
22

33
npmScopes:
4-
testscope:
5-
npmPublishRegistry: "http://localhost:4873"
6-
npmRegistryServer: "http://localhost:4873"
4+
testscope:
5+
npmPublishRegistry: 'http://localhost:4873'
6+
npmRegistryServer: 'http://localhost:4873'
77

88
plugins:
9-
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
10-
spec: "@yarnpkg/plugin-workspace-tools"
11-
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
12-
spec: "@yarnpkg/plugin-version"
9+
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
10+
spec: '@yarnpkg/plugin-workspace-tools'
11+
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
12+
spec: '@yarnpkg/plugin-version'
1313

1414
unsafeHttpWhitelist:
15-
- localhost
15+
- localhost
1616

1717
yarnPath: .yarn/releases/yarn-3.5.1.cjs

0 commit comments

Comments
 (0)