Switch to tagged version for GitHub Action (#141) #168
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: JSON | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
detect-changes: | |
name: Detect changes | |
runs-on: ubuntu-latest | |
outputs: | |
any_changed: ${{ steps.detect-changes.outputs.any_changed }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: detect-changes | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
**/*.json | |
- name: Print changed files | |
run: | | |
for file in ${{ steps.changed-files-specific.outputs.all_changed_files }}; do | |
echo "$file" | |
done | |
style: | |
name: Check style | |
runs-on: ubuntu-latest | |
needs: detect-changes | |
if: needs.detect-changes.outputs.any_changed == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: prettier | |
uses: creyD/[email protected] | |
with: | |
dry: true | |
prettier_options: "--check **/*.json" |