Skip to content

dep: bump @typescript-eslint/eslint-plugin from 5.51.0 to 5.59.2 #637

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

dep: bump @typescript-eslint/eslint-plugin from 5.51.0 to 5.59.2 #637

Workflow file for this run

name: Test POST
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 request
id: request
uses: ./
with:
url: 'https://jsonplaceholder.typicode.com/todos'
method: post
data: '{ "title": "dummy-todo", "userId": 1, "completed": false }'
- name: Print the response status
run: echo ${{ steps.request.outputs.status }}
shell: bash
- name: Print the response headers
run: echo ${{ steps.request.outputs.headers }}
shell: bash
- name: Print the response payload
run: echo ${{ steps.request.outputs.response }}
shell: bash