Skip to content

dep: bump @typescript-eslint/parser from 5.51.0 to 5.59.2 #524

dep: bump @typescript-eslint/parser from 5.51.0 to 5.59.2

dep: bump @typescript-eslint/parser from 5.51.0 to 5.59.2 #524

Workflow file for this run

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