Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

master sync #164

Merged
merged 39 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
c23f0d6
revert conitional stringify which leads to breaking changes with olde…
Dec 19, 2023
3fee944
Merge pull request #127 from fjogeleit/revert-conditional-stringify
fjogeleit Dec 19, 2023
897543f
Bump axios from 1.6.2 to 1.6.3
dependabot[bot] Jan 1, 2024
e23645b
Merge pull request #128 from fjogeleit/dependabot/npm_and_yarn/axios-…
fjogeleit Jan 1, 2024
a665541
Upgrade to Node20
Jan 8, 2024
0bd00a3
Merge pull request #131 from fjogeleit/node-upgrade
fjogeleit Jan 8, 2024
997aeb8
typo fix in README.md
rgb2hsl Jan 11, 2024
caab55e
Merge pull request #132 from rgb2hsl/patch-1
fjogeleit Jan 12, 2024
2e6550f
Bump axios from 1.6.5 to 1.6.7
dependabot[bot] Jan 29, 2024
c9a231b
Merge pull request #134 from fjogeleit/dependabot/npm_and_yarn/axios-…
fjogeleit Jan 29, 2024
517601f
Bump undici from 5.28.2 to 5.28.3
dependabot[bot] Feb 16, 2024
606bb16
Merge pull request #135 from fjogeleit/dependabot/npm_and_yarn/undici…
fjogeleit Feb 16, 2024
72a0a5b
docs: wrong `timeout` input description
ClayenKitten Mar 16, 2024
1a131d1
Merge pull request #136 from ClayenKitten/patch-1
fjogeleit Mar 16, 2024
363da44
Bump follow-redirects from 1.15.4 to 1.15.6
dependabot[bot] Mar 16, 2024
897b6a3
Merge pull request #137 from fjogeleit/dependabot/npm_and_yarn/follow…
fjogeleit Mar 17, 2024
0b6ec5e
Bump axios from 1.6.7 to 1.6.8
dependabot[bot] Mar 18, 2024
33a4d07
Merge pull request #138 from fjogeleit/dependabot/npm_and_yarn/axios-…
fjogeleit Mar 19, 2024
f9dc1a8
Bump undici from 5.28.3 to 5.28.4
dependabot[bot] Apr 4, 2024
7c708e9
Merge pull request #139 from fjogeleit/dependabot/npm_and_yarn/undici…
fjogeleit Apr 4, 2024
bfbe4dd
fix retry and ignore status response
Apr 6, 2024
2bb8059
Merge pull request #143 from fjogeleit/fixes
fjogeleit Apr 6, 2024
74e0e96
update build
Apr 6, 2024
8537e58
fix retryWait mapping
Apr 6, 2024
8af2803
Merge pull request #144 from fjogeleit/fix-retryWait
fjogeleit Apr 6, 2024
ed8a1c3
Add ignore ssl error (#145)
kittizz Apr 20, 2024
7d4a18a
Add status to outputs (#147)
oj-unito May 4, 2024
1e440b8
Bump axios from 1.6.8 to 1.7.1 (#148)
dependabot[bot] May 20, 2024
6cbe966
Bump axios from 1.7.1 to 1.7.2 (#149)
dependabot[bot] May 27, 2024
ae65a27
Update action.yml (#151)
Kbonheur May 30, 2024
dea4657
dep update
May 31, 2024
44816be
fix err not defined
Jun 4, 2024
aeef78b
Add tests with assertions (#154)
Jul 29, 2024
6276145
Add an IT test to verify DELETE method works as expected (#157)
sebastienvermeille Aug 5, 2024
64c4566
Bump axios from 1.7.2 to 1.7.3 (#158)
dependabot[bot] Aug 5, 2024
97bb93c
Bump axios from 1.7.3 to 1.7.4 (#160)
dependabot[bot] Aug 19, 2024
53f5db2
Bump axios from 1.7.4 to 1.7.5 (#161)
dependabot[bot] Aug 26, 2024
5cfc483
Bump axios from 1.7.5 to 1.7.7 (#162)
dependabot[bot] Sep 3, 2024
07eceb4
depedency updates (#163)
fjogeleit Sep 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 0 additions & 103 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,106 +69,3 @@ jobs:
- name: Repository Integrity Check
run: |
git diff --quiet dist
test:
if: >
!failure() &&
!cancelled()
needs:
- integrity
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

- name: Request Postman Echo GET
uses: ./
with:
url: 'https://postman-echo.com/get'
method: 'GET'

- name: Request Postman Echo POST
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
data: '{ "key": "value" }'

- name: Request Postman Echo POST with Unescaped Newline
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
escapeData: 'true'
data: >-
{
"key":"multi line\ntest
text"
}

- name: Request Postman Echo BasicAuth
uses: ./
with:
url: 'https://postman-echo.com/basic-auth'
method: 'GET'
username: 'postman'
password: 'password'

- name: Request Postman Echo with 404 Response and ignore failure code
uses: ./
with:
url: 'https://postman-echo.com/status/404'
method: 'GET'
ignoreStatusCodes: '404'

- name: Create Test File
run: |
echo "test" > testfile.txt
- name: Request Postman Echo POST Multipart
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
data: '{ "key": "value" }'
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'

- name: Request Postman Echo POST and persist response
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
file: "${{ github.workspace }}/testfile.txt"
responseFile: "${{ github.workspace }}/response.json"
- name: Output responseFile
run: |
cat "${{ github.workspace }}/response.json"

- name: Request Postman Echo POST Multipart without data
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'

- name: Request Postman Echo POST single file
uses: ./
with:
url: 'https://postman-echo.com/post'
method: 'POST'
file: "${{ github.workspace }}/testfile.txt"

- name: Request Postman Echo POST URLEncoded string data
uses: ./
with:
url: 'https://postman-echo.com/post'
contentType : 'application/x-www-form-urlencoded'
method: 'POST'
data: 'key=value'

- name: Request Postman Echo POST URLEncoded json data
uses: ./
with:
url: 'https://postman-echo.com/post'
contentType : 'application/x-www-form-urlencoded'
method: 'POST'
data: '{"key":"value"}'
Loading
Loading