-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: add precommit hooks Add precommit hooks with Husky and lint-staged We will run eslint and prettier for each files that is committed.
- Loading branch information
Showing
6 changed files
with
433 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: lint | ||
|
||
on: [push] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: docker://borales/yarn:latest | ||
with: | ||
args: 'install' | ||
- name: lint | ||
uses: docker://borales/yarn:latest | ||
with: | ||
args: 'lint' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ jobs: | |
- name: test | ||
uses: docker://borales/yarn:latest | ||
with: | ||
cmd: 'test' | ||
args: 'test' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,9 +24,9 @@ | |
|
||
# v0.1.3 (Tue Nov 26 2019) | ||
|
||
#### 🐛 Bug Fix | ||
#### 🐛 Bug Fix | ||
|
||
- fix: add __typename property [#6](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/6) ([@ardeois](https://github.com/ardeois)) | ||
- fix: add \_\_typename property [#6](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/6) ([@ardeois](https://github.com/ardeois)) | ||
|
||
#### Authors: 1 | ||
|
||
|
@@ -36,7 +36,7 @@ | |
|
||
# v0.1.2 (Thu Nov 14 2019) | ||
|
||
#### 🐛 Bug Fix | ||
#### 🐛 Bug Fix | ||
|
||
- fix: handle input-object-type definitions [#5](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/5) ([@YevheniiMelikov](https://github.com/YevheniiMelikov)) | ||
|
||
|
@@ -48,7 +48,7 @@ | |
|
||
# v0.1.1 (Tue Oct 29 2019) | ||
|
||
#### 🐛 Bug Fix | ||
#### 🐛 Bug Fix | ||
|
||
- fix: move graphql to peer dependencies [#4](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/4) ([@ardeois](https://github.com/ardeois)) | ||
|
||
|
@@ -60,7 +60,7 @@ | |
|
||
# v0.1.0 (Tue Oct 29 2019) | ||
|
||
#### 🚀 Enhancement | ||
#### 🚀 Enhancement | ||
|
||
- build: first release [#3](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/3) ([@ardeois](https://github.com/ardeois)) | ||
|
||
|
@@ -72,32 +72,28 @@ | |
|
||
# v0.0.5 (Tue Oct 29 2019) | ||
|
||
|
||
|
||
--- | ||
|
||
# v0.0.4 (Tue Oct 29 2019) | ||
|
||
|
||
|
||
--- | ||
|
||
# v0.0.3 (Tue Oct 29 2019) | ||
|
||
#### 🐛 Bug Fix | ||
#### 🐛 Bug Fix | ||
|
||
- chore: setup build with publishing scripts [#1](https://github.com/ardeois/graphql-codegen-typescript-mock-data/pull/1) ([email protected]) | ||
|
||
#### ⚠️ Pushed to master | ||
#### ⚠️ Pushed to master | ||
|
||
- build: first release ([email protected]) | ||
- chore: update circleci build ([email protected]) | ||
- docs: update readme ([email protected]) | ||
- fix: typo in mockk generator ([email protected]) | ||
- fix: use casual instead of faker ([email protected]) | ||
- feat: use spread operator instead of mock builder ([email protected]) | ||
- build: first release ([email protected]) | ||
- chore: update circleci build ([email protected]) | ||
- docs: update readme ([email protected]) | ||
- fix: typo in mockk generator ([email protected]) | ||
- fix: use casual instead of faker ([email protected]) | ||
- feat: use spread operator instead of mock builder ([email protected]) | ||
|
||
#### Authors: 2 | ||
|
||
- Corentin Ardeois ([email protected]) | ||
- Corentin Ardeois ([email protected]) | ||
- Corentin Ardeois ([email protected]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.