Skip to content

Commit 17f0e78

Browse files
author
Manu
committed
fix(application): fixed install dependencies on github workflow
1 parent 2458b53 commit 17f0e78

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,17 @@ jobs:
3131
registry-url: 'https://registry.npmjs.org'
3232

3333
- name: Install Dependencies
34-
run: yarn build
34+
run: yarn
3535

3636
- name: Lint
3737
run: yarn lint
3838

3939
- name: Test
4040
run: yarn test --ci --coverage --maxWorkers=2
4141

42+
- name: Install Dependencies
43+
run: yarn build
44+
4245
- name: Semantic Release
4346
run: yarn semver
4447
env:

src/graphqlService.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,13 @@ export class GraphqlService {
236236
return this.exec(scope, schema, variables);
237237
}
238238

239+
/**
240+
*
241+
* @param scope
242+
* @param schema
243+
* @param variables
244+
* @param mutate
245+
*/
239246
private exec = (
240247
scope: string,
241248
schema: string,

0 commit comments

Comments
 (0)