Bump @babel/traverse #284
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: Metadata Validation Pattern Submission Workflow | |
on: | |
push: | |
paths: | |
- "python-test-samples/**" | |
- "dotnet-test-samples/**" | |
- "typescript-test-samples/**" | |
- "java-test-samples/**" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Stockopedia/action-get-changed-files@v1 | |
id: get_changed | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
ignore: "**/+(.github)" | |
foldersOnly: false | |
format: csv | |
- name: Echo changed files | |
id: setfiles | |
run: | | |
files=${{ steps.get_changed.outputs.changed }} | |
echo $files | |
echo "FILES=$files" >> $GITHUB_OUTPUT | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Get new folder | |
id: setfolders | |
run: | | |
python -m pip install --upgrade pip | |
pip install github-action-utils | |
python .github/workflows/getPatternFolder.py "${{ steps.setfiles.outputs.FILES }}" | |
- name: Validate Schema | |
run: | | |
for folder in ${{ steps.setfolders.outputs.folders }} | |
do | |
echo $folder | |
pip install -r .github/workflows/requirements.txt | |
python .github/workflows/metadata_json_validator.py $folder | |
done |