chore: added field weight in request post origin #646
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test_job: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:22.04 | |
steps: | |
- name: Setup Env | |
run: apt-get update && apt-get install -y git npm | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Setting GIT | |
run: git config --global url."https://${{ secrets.GLOBAL_TOKEN }}:[email protected]/aziontech".insteadOf "https://github.com/aziontech" | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Git config | |
run: git config --global --add safe.directory /__w/azionapi-openapi/azionapi-openapi | |
shell: bash | |
- name: install openapi-linter | |
run: npm i -g @superfaceai/openapi-linter | |
#get all .yaml files which were added/modified | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: | | |
**/*.yaml | |
files_ignore: | | |
spectral/.spectral*.yaml | |
- name: Run linter for changed files | |
run: | | |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | |
oal lint $file -f yaml | |
done | |
- name: install redocly-cli | |
run: npm i -g @redocly/[email protected] | |
- name: Run linter for changed files | |
run: | | |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | |
redocly lint $file | |
done |