2022-11-03 13:19:36 +00:00
|
|
|
name: CI
|
2020-04-21 11:44:56 +00:00
|
|
|
|
2022-11-03 13:19:36 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- 'releases/*'
|
2020-04-21 11:44:56 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-11-03 13:19:36 +00:00
|
|
|
build:
|
2022-11-03 20:35:53 +00:00
|
|
|
if: >
|
|
|
|
github.event_name == 'pull_request' &&
|
|
|
|
github.event.pull_request.user.login == 'dependabot[bot]'
|
2022-11-03 13:19:36 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2020-04-21 11:44:56 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-11-03 13:19:36 +00:00
|
|
|
- id: ref
|
|
|
|
run: |
|
|
|
|
if [[ -n '${{ github.event.ref }}' ]]; then
|
|
|
|
branch="${{ github.event.ref }}"
|
|
|
|
echo "branch=$branch" >> $GITHUB_OUTPUT
|
|
|
|
else
|
|
|
|
branch="${{ github.event.pull_request.head.ref }}"
|
|
|
|
echo "branch=$branch" >> $GITHUB_OUTPUT
|
|
|
|
fi
|
|
|
|
- name: checkout repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ steps.ref.outputs.branch }}
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
- name: Build Action
|
|
|
|
run: |
|
|
|
|
npm run build
|
|
|
|
- name: Update dist
|
|
|
|
run: |
|
|
|
|
git config user.name 'github-actions[bot]'
|
|
|
|
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
|
|
git add ./dist
|
|
|
|
if ! git diff --quiet dist; then
|
|
|
|
git commit -m "Update dist"
|
|
|
|
git push origin HEAD:${{ steps.ref.outputs.branch }}
|
|
|
|
fi
|
2022-11-03 20:35:53 +00:00
|
|
|
integrity:
|
|
|
|
if: >
|
|
|
|
!failure() &&
|
|
|
|
!cancelled()
|
2022-11-03 13:19:36 +00:00
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-03 20:35:53 +00:00
|
|
|
steps:
|
|
|
|
- name: checkout repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '16.17.0'
|
|
|
|
- name: Build action
|
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
npm run build
|
|
|
|
- name: Repository Integrity Check
|
|
|
|
run: |
|
|
|
|
git diff --quiet dist
|
|
|
|
test:
|
|
|
|
if: >
|
|
|
|
!failure() &&
|
|
|
|
!cancelled()
|
|
|
|
needs:
|
|
|
|
- integrity
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-03 13:19:36 +00:00
|
|
|
steps:
|
2022-11-03 13:29:31 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-04-21 11:44:56 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
|
|
|
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo GET
|
2020-04-21 11:44:56 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-04-21 11:55:30 +00:00
|
|
|
url: 'https://postman-echo.com/get'
|
2020-04-21 11:44:56 +00:00
|
|
|
method: 'GET'
|
2020-04-21 11:58:56 +00:00
|
|
|
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo POST
|
2020-04-21 11:58:56 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/post'
|
|
|
|
method: 'POST'
|
|
|
|
data: '{ "key": "value" }'
|
2020-04-21 12:07:56 +00:00
|
|
|
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo POST with Unescaped Newline
|
2020-10-07 16:29:38 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/post'
|
|
|
|
method: 'POST'
|
|
|
|
escapeData: 'true'
|
|
|
|
data: >-
|
|
|
|
{
|
|
|
|
"key":"multi line\ntest
|
|
|
|
text"
|
|
|
|
}
|
|
|
|
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo BasicAuth
|
2020-04-21 12:07:56 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/basic-auth'
|
2020-04-21 12:09:38 +00:00
|
|
|
method: 'GET'
|
2020-04-21 12:07:56 +00:00
|
|
|
username: 'postman'
|
|
|
|
password: 'password'
|
2021-01-24 12:14:13 +00:00
|
|
|
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo with 404 Response and ignore failure code
|
2021-03-19 16:28:53 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/status/404'
|
|
|
|
method: 'GET'
|
|
|
|
ignoreStatusCodes: '404'
|
|
|
|
|
2021-01-24 12:14:13 +00:00
|
|
|
- name: Create Test File
|
|
|
|
run: |
|
|
|
|
echo "test" > testfile.txt
|
2021-07-22 12:52:06 +00:00
|
|
|
- name: Request Postman Echo POST Multipart
|
2021-01-24 12:14:13 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/post'
|
|
|
|
method: 'POST'
|
|
|
|
data: '{ "key": "value" }'
|
|
|
|
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'
|
2022-02-10 03:14:07 +00:00
|
|
|
|
2022-10-05 15:29:30 +00:00
|
|
|
- name: Request Postman Echo POST Multipart without data
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/post'
|
|
|
|
method: 'POST'
|
|
|
|
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'
|
|
|
|
|
2022-02-10 03:14:07 +00:00
|
|
|
- name: Request Postman Echo POST single file
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
url: 'https://postman-echo.com/post'
|
|
|
|
method: 'POST'
|
|
|
|
file: "${{ github.workspace }}/testfile.txt"
|
2022-11-07 10:08:34 +00:00
|
|
|
|
|
|
|
- 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"}'
|