Skip to content

dep: bump flow-bin from 0.199.1 to 0.206.0 #528

dep: bump flow-bin from 0.199.1 to 0.206.0

dep: bump flow-bin from 0.199.1 to 0.206.0 #528

name: Test GitHub GraphQL API - Query
on: push
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Get the sources
uses: actions/checkout@v3
- name: Execute a dummy query
id: query
uses: ./
with:
headers: '{"Authorization": "bearer ${{ secrets.TOKEN }}" }'
graphql: |
query {
repository(name: "watermelon-http-client", owner:"camilogarcialarotta"){
issues(first:1) {
nodes{
title
state
}
}
}
}
- name: Print the response status
run: echo ${{ steps.query.outputs.status }}
shell: bash
- name: Print the response headers
run: echo ${{ steps.query.outputs.headers }}
shell: bash
- name: Print the response payload
run: echo ${{ steps.query.outputs.response }}
shell: bash