Skip to content

Commit

Permalink
Send from parameter as a string to Apollo Studio API (#23)
Browse files Browse the repository at this point in the history
* Send from parameter as a string

* Update dependencies

* Add typecheck to workflows

* Add validation period formatting

* Always convert validation period to seconds

* Format validation period in seconds for api request and human readable format for comment
  • Loading branch information
iansu committed Jul 7, 2022
1 parent 779a0e6 commit 40657de
Show file tree
Hide file tree
Showing 11 changed files with 239 additions and 99 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
run: npm install --prefer-offline
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
run: npm install --prefer-offline
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
run: npm install --prefer-offline
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Apollo Schema Check Action Changelog

## 2.0.1 (July 6, 2022)

- Pass `from` parameter to Apollo Studio API as a string instead of a number (see: [https://status.apollographql.com/incidents/c5dvk0tbg5bv](https://status.apollographql.com/incidents/c5dvk0tbg5bv))

## 2.0.0 (December 20, 2021)

- Rewrite to use a direct call to the Apollo Studio API instead of using the Apollo CLI
Expand Down

0 comments on commit 40657de

Please sign in to comment.