Skip to content

Commit 1ad77b4

Browse files
author
Manu
committed
fix(application): the automated release is failing
1 parent 29c0a1f commit 1ad77b4

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/main.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v2
24+
- name: Checkout repo
25+
uses: actions/checkout@v2
26+
27+
- name: Use Node ${{ matrix.node_version }}
28+
uses: actions/setup-node@v1
29+
with:
30+
node-version: ${{ matrix.node_version }}
31+
registry-url: 'https://registry.npmjs.org'
2532

2633
- name: Install Dependencies
2734
run: yarn

test/graphqlService.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ describe('Test Graphql Service', () => {
314314

315315
expect(typeof query).toEqual(typeof new Object());
316316
} catch (e) {
317-
//
317+
console.log('error: ', e);
318318
}
319319
});
320320
});

0 commit comments

Comments
 (0)