Cryptonaito #7423
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: Workflow - Pull Request | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run prettier | ||
run: |- | ||
npx prettier --check . | ||
npx prettier --write . | ||
validate-entry: | ||
name: Validate entries | ||
uses: ./.github/workflows/validate-entry.yml | ||
check-file-changes: | ||
name: Check file changes | ||
uses: ./.github/workflows/check-file-changes.yml | ||
Check failure on line 25 in .github/workflows/pull-request.yml GitHub Actions / .github/workflows/pull-request.ymlInvalid workflow file
|