Skip to content

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

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 #636

Workflow file for this run

name: Test GET
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:
url: 'https://jsonplaceholder.typicode.com/todos?id=1'
- 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